Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.217.163.75
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
mysql /
mysql-test /
suite /
ndb /
include /
[ HOME SHELL ]
Name
Size
Permission
Action
have_clusterj.inc
3.08
KB
-rw-r--r--
have_clusterj_jpa.inc
1.89
KB
-rw-r--r--
have_connectorj.inc
1002
B
-rw-r--r--
have_java.inc
3.04
KB
-rw-r--r--
have_little_endian.inc
340
B
-rw-r--r--
have_ndb_rqg.inc
1.93
KB
-rw-r--r--
have_ndbjtie_junit.inc
1.37
KB
-rw-r--r--
have_openjpa.inc
971
B
-rw-r--r--
memory_usage.inc
3.08
KB
-rw-r--r--
ndb_add_node.cnf
1000
B
-rw-r--r--
ndb_add_node_mysqld.cnf
526
B
-rw-r--r--
ndb_addnode_restart_setup.inc
580
B
-rw-r--r--
ndb_check_blob_tables.inc
1.3
KB
-rw-r--r--
ndb_check_unique_index.inc
1.39
KB
-rw-r--r--
ndb_desc_print.inc
834
B
-rw-r--r--
ndb_diff_tables.inc
436
B
-rw-r--r--
ndb_error_reporter.inc
1.16
KB
-rw-r--r--
ndb_execute_count.inc
293
B
-rw-r--r--
ndb_find_index_stat_tool.inc
1.11
KB
-rw-r--r--
ndb_find_print_file_tool.inc
1.12
KB
-rw-r--r--
ndb_get_blob_tables.inc
1.05
KB
-rw-r--r--
ndb_info.inc
3.6
KB
-rw-r--r--
ndb_init_execute_count.inc
315
B
-rw-r--r--
ndb_init_scan_counts.inc
450
B
-rw-r--r--
ndb_scan_counts.inc
491
B
-rw-r--r--
ndb_share_check_shares.inc
280
B
-rw-r--r--
restart_cluster.inc
1.17
KB
-rw-r--r--
restart_cluster_rolling.inc
1.33
KB
-rw-r--r--
restart_node.inc
1.46
KB
-rw-r--r--
restart_random_node.inc
1.04
KB
-rw-r--r--
restore_sql_mode_after_turn_of...
111
B
-rw-r--r--
run_java.inc
2.17
KB
-rw-r--r--
run_ndbapitest.inc
1.21
KB
-rw-r--r--
start_mysqld.inc
846
B
-rw-r--r--
stop_mysqld.inc
1.07
KB
-rw-r--r--
turn_off_strict_sql_mode.inc
158
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run_java.inc
--perl use strict; use lib "lib/"; use My::Exec; use My::Platform; ## ## run_java.inc - include script to run Java ## ## Parameters ## $MTR_JAVA: Java which should be used ## $JAVA_CLASS: Class file to run ## $JAVA_CLASSPATH: Class path to use when running test ## $JAVA_JVM_OPTS: Optional parameters to the JVM ## ## ## Usage: ## ## --source suite/ndb/include/have_java.inc ## ## let JAVA_CLASSPATH=-classpath .:/some/path; ## let JAVA_JVM_OPTS=-Dsome.setting=123 -ea -Xcheck:jni; ## ## let JAVA_CLASS=test/SomeTest.class; ## --source suite/ndb/include/run_java.inc ## ## let JAVA_CLASS=test/SomeOtherTest.class; ## --source suite/ndb/include/run_java.inc ## # Check parameters my $java = $ENV{MTR_JAVA} || die "ERROR: Java not found, set MTR_JAVA"; my $java_classpath = $ENV{JAVA_CLASSPATH} || die "ERROR: Java classpath not set, please set JAVA_CLASSPATH"; my $java_class = $ENV{JAVA_CLASS} || die "ERROR: Java class to run not set, please set JAVA_CLASS"; my $java_args = $ENV{MTR_JAVA_ARGS} || ''; my $jvm_opts = $ENV{JAVA_JVM_OPTS} || ''; my $class_args = $ENV{JAVA_ARGUMENTS} || ''; my $vardir = $ENV{MYSQLTEST_VARDIR} || die "Need MYSQLTEST_VARDIR"; my $sep = ":"; if(IS_WINDOWS) { $sep = ";"; } # The length of the variables that can be passed in environment variables are limited # (around 1024 characters) - this trick lets you plit the classpath in several variables to # be avle to pass longer classpaths for my $i (1..9) { my $env = $ENV{"JAVA_CLASSPATH_$i"} || ''; if ($env) { $java_classpath .= "$sep$env"; } my $jvm = $ENV{"JAVA_JVM_OPTS_$i"} || ''; if ($jvm) { $jvm_opts .= " $jvm"; } } # Tell the vm to put temporary files in $MYSQLTEST_VARDIR/tmp $jvm_opts .= " -Djava.io.tmpdir=$vardir/tmp"; if ($ENV{MTR_CLASSPATH}) { $java_classpath .= "$sep$ENV{MTR_CLASSPATH}" } my $cmd = "\"$java\" $java_args $jvm_opts -classpath \"$java_classpath\" $java_class $class_args"; my $res = exec_print_on_error($cmd); my $F = IO::File->new("$vardir/tmp/run_java.result", "w") || die "Couldn't open varfile for writing"; if ($res) { print $F "# Success\n"; } else { print $F "die \'$cmd\' run failed;\n"; } $F->close(); EOF --source $MYSQLTEST_VARDIR/tmp/run_java.result
Close