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 | : 3.128.205.62
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 : have_java.inc
--perl use strict; use File::Basename; use IO::File; use lib "lib/"; use My::Platform; use My::Find; require "lib/mtr_misc.pl"; # # Looks for java executable (/bin/java) in several locations: # - MTR_JAVA environment variable # - Other architecture-dependent locations (see below) # - $PATH environment variable # # If java executable is found, MTR_JAVA will be set to reflect this location # If no java executable is found, fail the test in which this is included my $java_args = ""; my @arch_paths = (); my $pathsep = "/"; my $bits = $ENV{MYSQL_SYSTEM_ARCHITECTURE}; # Architecture dependent paths if(!IS_WINDOWS) { push(@arch_paths, ('/usr/lib/jvm/java/bin', '/usr/lib64/jvm/java/bin')); push(@arch_paths, ('/usr/local/jdk/bin', '/usr/local/java/bin', '/usr/local/java/jdk/bin')); push(@arch_paths, ('/usr/jdk-latest/bin', '/usr/bin')); $java_args = "-d32"; if ($bits == 64) { $java_args = "-d64"; push(@arch_paths, ('/usr/java-local/jdk-64/bin', '/usr/local/jdk-64/bin', '/usr/local/java/jdk-64/bin')); } } else # IS_WINDOWS { if ($bits == 64) { push(@arch_paths, 'C:\java\jdk-64\bin'); $java_args = "-server"; } else { push(@arch_paths, 'C:\java\jdk\bin'); $java_args = "-client"; } push(@arch_paths, 'C:\Windows\SysWOW64'); push(@arch_paths, 'C:\Windows\System32'); } my @java_paths = ($ENV{JAVA_HOME} . $pathsep . "bin"); push(@java_paths, $ENV{JDK_HOME} . $pathsep . "bin"); push(@java_paths, @arch_paths); push(@java_paths, "*"); # last resort: empty path marker for "java on PATH variable" my $java_loc = ""; our $java_version = ""; sub java_exists { my ($path, $exe) = @_; $exe .= ".exe" if IS_WINDOWS; $path .= $pathsep if length($path) > 0; my $exists = $path . $exe; my $devnull = "/dev/null"; $devnull = "NUL" if IS_WINDOWS; system("echo trying: $exists"); system("\"$exists\" " . $java_args . " -version > " . $devnull); my $ret = $exists if ($? == 0); if($? == 0) { my $ret = $exists; open(VER, "\"$exists\" -version 2>&1 |"); $java_version = <VER>; close(VER); } return $ret; } system("echo Looking for a suitable Java..."); foreach my $path (@java_paths) { if (!defined $path || $path eq ($pathsep . "bin")) { # no MTR_JAVA case next; } if ($path eq "*" ) { # java on PATH env case $path = ""; } my $tmp = java_exists($path, "java"); if ($tmp ne "") { $java_loc = $tmp; last; } } my $vardir = $ENV{MYSQLTEST_VARDIR} or die "Need MYSQLTEST_VARDIR"; my $F = IO::File->new("$vardir/tmp/have_java_result.inc", "w") or die; if ($java_loc eq '') { print $F "--die Could not find Java executable; please install Java in one of the above paths or set env MTR_JAVA to the preferred JAVA HOME;\n"; } else { print $F "--let \MTR_JAVA= $java_loc\n"; print $F "--let \MTR_JAVA_ARGS= $java_args\n"; print $F "--let \MTR_JAVA_VERSION= $java_version\n"; print $F "--echo Found Java: '\$MTR_JAVA'\n"; print $F "--echo Java version: '\$MTR_JAVA_VERSION'\n"; } $F->close(); EOF --source $MYSQLTEST_VARDIR/tmp/have_java_result.inc
Close