initial commit
This commit is contained in:
commit
4f21add4ff
7836 changed files with 2896361 additions and 0 deletions
39
docker-compose.yml
Normal file
39
docker-compose.yml
Normal file
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
mariadb:
|
||||
image: lscr.io/linuxserver/mariadb
|
||||
container_name: mariadb
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- MYSQL_ROOT_PASSWORD=mariadbpassword
|
||||
- TZ=America/New_York
|
||||
- MYSQL_DATABASE=WP_database
|
||||
- MYSQL_USER=WP_dbuser
|
||||
- MYSQL_PASSWORD=WP_dbpassword
|
||||
volumes:
|
||||
- ./mariadb:/config
|
||||
restart: unless-stopped
|
||||
swag:
|
||||
image: lscr.io/linuxserver/swag
|
||||
container_name: swag
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York
|
||||
- URL=gosmst.com
|
||||
- SUBDOMAINS=wildcard
|
||||
- VALIDATION=dns
|
||||
- DNSPLUGIN=cloudflare
|
||||
- PROPAGATION=60
|
||||
- STAGING=true
|
||||
volumes:
|
||||
- ./swag:/config
|
||||
ports:
|
||||
- 443:443
|
||||
depends_on:
|
||||
- mariadb
|
||||
restart: unless-stopped
|
196
mariadb/custom.cnf
Normal file
196
mariadb/custom.cnf
Normal file
|
@ -0,0 +1,196 @@
|
|||
## custom configuration file based on https://github.com/just-containers/mariadb/blob/master/rootfs/etc/mysql/my.cnf
|
||||
## please be aware that changing options here may break things
|
||||
#
|
||||
# The MySQL database server configuration file.
|
||||
#
|
||||
# One can use all long options that the program supports.
|
||||
# Run program with --help to get a list of available options and with
|
||||
# --print-defaults to see which it would actually understand and use.
|
||||
#
|
||||
# For explanations see
|
||||
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
|
||||
|
||||
# This will be passed to all mysql clients
|
||||
# It has been reported that passwords should be enclosed with ticks/quotes
|
||||
# especially if they contain "#" chars...
|
||||
[client]
|
||||
port = 3306
|
||||
socket = /var/run/mysqld/mysqld.sock
|
||||
|
||||
default-character-set = utf8mb4
|
||||
|
||||
# Here is entries for some specific programs
|
||||
# The following values assume you have at least 32M ram
|
||||
|
||||
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
|
||||
[mysqld_safe]
|
||||
socket = /var/run/mysqld/mysqld.sock
|
||||
nice = 0
|
||||
|
||||
[mysqld]
|
||||
#
|
||||
# * Basic Settings
|
||||
#
|
||||
user = abc
|
||||
pid-file = /var/run/mysqld/mysqld.pid
|
||||
socket = /var/run/mysqld/mysqld.sock
|
||||
port = 3306
|
||||
basedir = /usr
|
||||
datadir = /var/lib/mysql
|
||||
tmpdir = /tmp
|
||||
lc_messages_dir = /usr/share/mysql
|
||||
lc_messages = en_US
|
||||
skip-external-locking
|
||||
#
|
||||
# Instead of skip-networking the default is now to listen only on
|
||||
# localhost which is more compatible and is not less secure.
|
||||
#bind-address = 127.0.0.1
|
||||
#
|
||||
# * Fine Tuning
|
||||
#
|
||||
key_buffer_size = 128M
|
||||
max_connections = 100
|
||||
connect_timeout = 5
|
||||
wait_timeout = 600
|
||||
max_allowed_packet = 16M
|
||||
thread_cache_size = 128
|
||||
thread_stack = 192K
|
||||
sort_buffer_size = 4M
|
||||
bulk_insert_buffer_size = 16M
|
||||
tmp_table_size = 32M
|
||||
max_heap_table_size = 32M
|
||||
|
||||
#performance_schema = on
|
||||
character_set_server = utf8mb4
|
||||
collation_server = utf8mb4_general_ci
|
||||
transaction_isolation = READ-COMMITTED
|
||||
binlog_format = MIXED
|
||||
|
||||
#
|
||||
# * MyISAM
|
||||
#
|
||||
# This replaces the startup script and checks MyISAM tables if needed
|
||||
# the first time they are touched. On error, make copy and try a repair.
|
||||
myisam_recover = BACKUP
|
||||
#open-files-limit = 2000
|
||||
table_open_cache = 400
|
||||
#table_cache = 64
|
||||
#thread_concurrency = 10
|
||||
myisam_sort_buffer_size = 512M
|
||||
concurrent_insert = 2
|
||||
read_buffer_size = 2M
|
||||
read_rnd_buffer_size = 1M
|
||||
#
|
||||
# * Query Cache Configuration
|
||||
#
|
||||
# Cache only tiny result sets, so we can fit more in the query cache.
|
||||
query_cache_limit = 128K
|
||||
query_cache_size = 64M
|
||||
# for more write intensive setups, set to DEMAND or OFF
|
||||
query_cache_type = DEMAND
|
||||
#
|
||||
# * Logging and Replication
|
||||
#
|
||||
console = 1
|
||||
# Both location gets rotated by the cronjob.
|
||||
# Be aware that this log type is a performance killer.
|
||||
# As of 5.1 you can enable the log at runtime!
|
||||
#general_log = 1
|
||||
#general_log_file = /config/log/mysql/mysql.log
|
||||
#
|
||||
# Error log - should be very few entries.
|
||||
#
|
||||
log_warnings = 2
|
||||
# Error logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf
|
||||
#log_error = /config/log/mysql/mysql.log
|
||||
#
|
||||
# Enable the slow query log to see queries with especially long duration
|
||||
slow_query_log = 1
|
||||
slow_query_log_file = /config/log/mysql/mariadb-slow.log
|
||||
long_query_time = 5
|
||||
#log_slow_rate_limit = 1000
|
||||
#log-queries-not-using-indexes
|
||||
#log_slow_admin_statements
|
||||
#
|
||||
# The following can be used as easy to replay backup logs or for replication.
|
||||
# note: if you are setting up a replication slave, see
|
||||
# https://mariadb.com/kb/en/setting-up-replication/
|
||||
# about other settings you may need to change.
|
||||
#server-id = 1
|
||||
#report_host = master1
|
||||
#auto_increment_increment = 2
|
||||
#auto_increment_offset = 1
|
||||
log_bin = /config/log/mysql/mariadb-bin
|
||||
log_bin_index = /config/log/mysql/mariadb-bin.index
|
||||
# not fab for performance, but safer
|
||||
#sync_binlog = 1
|
||||
#binlog_do_db = include_database_name
|
||||
#binlog_ignore_db = include_database_name
|
||||
expire_logs_days = 10
|
||||
max_binlog_size = 100M
|
||||
# slaves
|
||||
#relay_log = /config/log/mysql/relay-bin
|
||||
#relay_log_index = /config/log/mysql/relay-bin.index
|
||||
#relay_log_info_file = /config/log/mysql/relay-bin.info
|
||||
#log_slave_updates
|
||||
#read_only
|
||||
#
|
||||
# If applications support it, this stricter sql_mode prevents some
|
||||
# mistakes like inserting invalid dates etc.
|
||||
#sql_mode = NO_ENGINE_SUBSTITUTION,TRADITIONAL
|
||||
#
|
||||
# * InnoDB
|
||||
#
|
||||
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
|
||||
# Read the manual for more InnoDB related options. There are many!
|
||||
default_storage_engine = InnoDB
|
||||
# you can't just change log file size, requires special procedure
|
||||
#innodb_log_file_size = 50M
|
||||
innodb_buffer_pool_size = 256M
|
||||
innodb_log_buffer_size = 8M
|
||||
innodb_file_per_table = 1
|
||||
innodb_open_files = 400
|
||||
innodb_io_capacity = 400
|
||||
innodb_flush_method = O_DIRECT
|
||||
#
|
||||
# * Security Features
|
||||
#
|
||||
# Read the manual, too, if you want chroot!
|
||||
# chroot = /var/lib/mysql/
|
||||
#
|
||||
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
|
||||
#
|
||||
# ssl-ca=/etc/mysql/cacert.pem
|
||||
# ssl-cert=/etc/mysql/server-cert.pem
|
||||
# ssl-key=/etc/mysql/server-key.pem
|
||||
|
||||
[mysqldump]
|
||||
quick
|
||||
quote-names
|
||||
max_allowed_packet = 16M
|
||||
|
||||
[mysql]
|
||||
#no-auto-rehash # faster start of mysql but no tab completion
|
||||
|
||||
[isamchk]
|
||||
key_buffer = 16M
|
||||
|
||||
#
|
||||
# * Galera-related settings
|
||||
#
|
||||
[galera]
|
||||
# Mandatory settings
|
||||
#wsrep_on=ON
|
||||
#wsrep_provider=
|
||||
#wsrep_cluster_address=
|
||||
#binlog_format=MIXED
|
||||
#default_storage_engine=InnoDB
|
||||
#innodb_autoinc_lock_mode=2
|
||||
#
|
||||
# Allow server to accept connections on all interfaces.
|
||||
#
|
||||
#bind-address=0.0.0.0
|
||||
#
|
||||
# Optional setting
|
||||
#wsrep_slave_threads=1
|
||||
#innodb_flush_log_at_trx_commit=0
|
2
mariadb/databases/WP_database/db.opt
Normal file
2
mariadb/databases/WP_database/db.opt
Normal file
|
@ -0,0 +1,2 @@
|
|||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_general_ci
|
BIN
mariadb/databases/WP_database/wp_commentmeta.frm
Normal file
BIN
mariadb/databases/WP_database/wp_commentmeta.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_commentmeta.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_commentmeta.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_comments.frm
Normal file
BIN
mariadb/databases/WP_database/wp_comments.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_comments.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_comments.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_e_events.frm
Normal file
BIN
mariadb/databases/WP_database/wp_e_events.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_e_events.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_e_events.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_links.frm
Normal file
BIN
mariadb/databases/WP_database/wp_links.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_links.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_links.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_options.frm
Normal file
BIN
mariadb/databases/WP_database/wp_options.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_options.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_options.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_postmeta.frm
Normal file
BIN
mariadb/databases/WP_database/wp_postmeta.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_postmeta.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_postmeta.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_posts.frm
Normal file
BIN
mariadb/databases/WP_database/wp_posts.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_posts.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_posts.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_term_relationships.frm
Normal file
BIN
mariadb/databases/WP_database/wp_term_relationships.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_term_relationships.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_term_relationships.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_term_taxonomy.frm
Normal file
BIN
mariadb/databases/WP_database/wp_term_taxonomy.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_term_taxonomy.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_term_taxonomy.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_termmeta.frm
Normal file
BIN
mariadb/databases/WP_database/wp_termmeta.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_termmeta.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_termmeta.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_terms.frm
Normal file
BIN
mariadb/databases/WP_database/wp_terms.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_terms.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_terms.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_announcements.frm
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_announcements.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_announcements.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_announcements.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_attachments.frm
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_attachments.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_attachments.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_attachments.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_entries.frm
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_entries.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_entries.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_entries.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_forms.frm
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_forms.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_forms.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_forms.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_snapshots.frm
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_snapshots.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_tripetto_snapshots.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_tripetto_snapshots.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_usermeta.frm
Normal file
BIN
mariadb/databases/WP_database/wp_usermeta.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_usermeta.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_usermeta.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_users.frm
Normal file
BIN
mariadb/databases/WP_database/wp_users.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/WP_database/wp_users.ibd
Normal file
BIN
mariadb/databases/WP_database/wp_users.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/aria_log.00000001
Normal file
BIN
mariadb/databases/aria_log.00000001
Normal file
Binary file not shown.
BIN
mariadb/databases/aria_log_control
Normal file
BIN
mariadb/databases/aria_log_control
Normal file
Binary file not shown.
363
mariadb/databases/b709d0171134.err
Normal file
363
mariadb/databases/b709d0171134.err
Normal file
|
@ -0,0 +1,363 @@
|
|||
230504 14:41:01 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-04 14:41:01 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 497
|
||||
2023-05-04 14:41:01 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-04 14:41:01 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-04 14:41:01 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-04 14:41:02 0 [Note] InnoDB: 10.6.12 started; log sequence number 42270; transaction id 14
|
||||
2023-05-04 14:41:02 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-04 14:41:02 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:41:02 0 [Note] InnoDB: Buffer pool(s) load completed at 230504 14:41:02
|
||||
2023-05-04 14:41:02 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-04 14:41:02 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-04 14:41:02 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-04 14:41:02 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-04 14:41:30 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-04 14:41:30 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-04 14:41:30 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-04 14:41:30 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:41:30 0 [Note] InnoDB: Buffer pool(s) dump completed at 230504 14:41:30
|
||||
2023-05-04 14:41:30 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-04 14:41:30 0 [Note] InnoDB: Shutdown completed; log sequence number 42282; transaction id 15
|
||||
2023-05-04 14:41:30 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230504 14:41:30 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230504 14:42:31 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-04 14:42:31 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-04 14:42:31 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-04 14:42:31 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: 10.6.12 started; log sequence number 42282; transaction id 14
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:42:31 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-04 14:42:31 0 [Note] InnoDB: Buffer pool(s) load completed at 230504 14:42:31
|
||||
2023-05-04 14:42:31 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-04 14:42:31 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-04 14:42:31 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-04 14:42:32 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-04 14:44:14 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-04 14:44:14 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-04 14:44:14 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-04 14:44:14 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:44:14 0 [Note] InnoDB: Buffer pool(s) dump completed at 230504 14:44:14
|
||||
2023-05-04 14:44:15 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-04 14:44:15 0 [Note] InnoDB: Shutdown completed; log sequence number 42294; transaction id 15
|
||||
2023-05-04 14:44:15 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230504 14:44:15 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230504 14:46:38 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-04 14:46:38 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-04 14:46:38 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-04 14:46:38 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: 10.6.12 started; log sequence number 42294; transaction id 14
|
||||
2023-05-04 14:46:38 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:46:38 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-04 14:46:39 0 [Note] InnoDB: Buffer pool(s) load completed at 230504 14:46:39
|
||||
2023-05-04 14:46:39 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-04 14:46:39 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-04 14:46:39 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-04 14:46:39 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-04 14:46:59 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-04 14:46:59 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-04 14:46:59 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-04 14:46:59 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:46:59 0 [Note] InnoDB: Buffer pool(s) dump completed at 230504 14:46:59
|
||||
2023-05-04 14:47:00 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-04 14:47:00 0 [Note] InnoDB: Shutdown completed; log sequence number 42306; transaction id 15
|
||||
2023-05-04 14:47:00 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230504 14:47:00 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230504 14:47:18 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-04 14:47:18 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-04 14:47:18 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-04 14:47:18 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: 10.6.12 started; log sequence number 42306; transaction id 14
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:47:18 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-04 14:47:18 0 [Note] InnoDB: Buffer pool(s) load completed at 230504 14:47:18
|
||||
2023-05-04 14:47:18 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-04 14:47:18 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-04 14:47:18 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-04 14:47:19 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-04 14:53:05 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-04 14:53:05 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-04 14:53:05 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-04 14:53:05 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:53:05 0 [Note] InnoDB: Buffer pool(s) dump completed at 230504 14:53:05
|
||||
2023-05-04 14:53:05 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-04 14:53:05 0 [Note] InnoDB: Shutdown completed; log sequence number 42462; transaction id 15
|
||||
2023-05-04 14:53:05 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230504 14:53:05 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230504 14:55:13 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-04 14:55:13 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-04 14:55:13 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-04 14:55:13 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: 10.6.12 started; log sequence number 42462; transaction id 14
|
||||
2023-05-04 14:55:13 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:55:13 0 [Note] InnoDB: Buffer pool(s) load completed at 230504 14:55:13
|
||||
2023-05-04 14:55:13 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-04 14:55:13 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-04 14:55:13 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-04 14:55:14 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-04 14:58:22 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-04 14:58:22 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-04 14:58:22 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-04 14:58:22 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-04 14:58:22 0 [Note] InnoDB: Buffer pool(s) dump completed at 230504 14:58:22
|
||||
2023-05-04 14:58:22 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-04 14:58:22 0 [Note] InnoDB: Shutdown completed; log sequence number 1733265; transaction id 512
|
||||
2023-05-04 14:58:22 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230504 14:58:22 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230504 19:41:47 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-04 19:41:47 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-04 19:41:47 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-04 19:41:47 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: 10.6.12 started; log sequence number 1733265; transaction id 513
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-04 19:41:47 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-04 19:41:47 0 [Note] InnoDB: Buffer pool(s) load completed at 230504 19:41:47
|
||||
2023-05-04 19:41:47 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-04 19:41:47 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-04 19:41:47 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-04 19:41:48 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-05 11:58:48 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-05 11:58:48 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-05 11:58:49 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-05 11:58:49 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-05 11:58:49 0 [Note] InnoDB: Buffer pool(s) dump completed at 230505 11:58:49
|
||||
2023-05-05 11:58:49 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-05 11:58:49 0 [Note] InnoDB: Shutdown completed; log sequence number 8695024; transaction id 2655
|
||||
2023-05-05 11:58:49 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230505 11:58:49 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230505 11:59:25 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-05 11:59:25 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-05 11:59:25 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-05 11:59:25 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: 10.6.12 started; log sequence number 8695024; transaction id 2656
|
||||
2023-05-05 11:59:25 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-05 11:59:25 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-05 11:59:25 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-05 11:59:25 0 [Note] InnoDB: Buffer pool(s) load completed at 230505 11:59:25
|
||||
2023-05-05 11:59:25 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-05 11:59:26 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-05 12:39:20 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-05 12:39:20 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-05 12:39:20 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-05 12:39:20 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-05 12:39:20 0 [Note] InnoDB: Buffer pool(s) dump completed at 230505 12:39:20
|
||||
2023-05-05 12:39:20 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-05 12:39:20 0 [Note] InnoDB: Shutdown completed; log sequence number 8695036; transaction id 2657
|
||||
2023-05-05 12:39:20 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230505 12:39:20 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230505 12:40:05 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-05 12:40:05 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-05 12:40:05 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-05 12:40:05 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: 10.6.12 started; log sequence number 8695036; transaction id 2656
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-05 12:40:05 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-05 12:40:05 0 [Note] InnoDB: Buffer pool(s) load completed at 230505 12:40:05
|
||||
2023-05-05 12:40:05 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-05 12:40:05 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-05 12:40:05 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-05 12:40:06 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-09 17:52:27 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-09 17:52:27 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-09 17:52:27 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-09 17:52:27 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-09 17:52:27 0 [Note] InnoDB: Buffer pool(s) dump completed at 230509 17:52:27
|
||||
2023-05-09 17:52:28 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-09 17:52:28 0 [Note] InnoDB: Shutdown completed; log sequence number 8695048; transaction id 2657
|
||||
2023-05-09 17:52:28 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230509 17:52:28 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230509 17:56:18 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-09 17:56:19 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-09 17:56:19 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-09 17:56:19 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: 10.6.12 started; log sequence number 8695048; transaction id 2656
|
||||
2023-05-09 17:56:19 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-09 17:56:19 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-09 17:56:19 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-09 17:56:19 0 [Note] InnoDB: Buffer pool(s) load completed at 230509 17:56:19
|
||||
2023-05-09 17:56:19 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-09 17:56:19 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-10 13:27:41 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-10 13:27:41 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-10 13:27:41 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-10 13:27:41 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-10 13:27:41 0 [Note] InnoDB: Buffer pool(s) dump completed at 230510 13:27:41
|
||||
2023-05-10 13:27:42 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-10 13:27:42 0 [Note] InnoDB: Shutdown completed; log sequence number 8695060; transaction id 2657
|
||||
2023-05-10 13:27:42 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230510 13:27:42 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230510 13:28:32 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-10 13:28:32 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-10 13:28:32 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-10 13:28:32 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: 10.6.12 started; log sequence number 8695060; transaction id 2656
|
||||
2023-05-10 13:28:32 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-10 13:28:32 0 [Note] InnoDB: Buffer pool(s) load completed at 230510 13:28:32
|
||||
2023-05-10 13:28:32 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-10 13:28:32 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-10 13:28:32 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-10 13:28:33 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-23 20:45:03 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-23 20:45:03 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-23 20:45:03 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-23 20:45:03 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-23 20:45:03 0 [Note] InnoDB: Buffer pool(s) dump completed at 230523 20:45:03
|
||||
2023-05-23 20:45:03 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-23 20:45:03 0 [Note] InnoDB: Shutdown completed; log sequence number 11661579; transaction id 3442
|
||||
2023-05-23 20:45:03 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230523 20:45:03 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
||||
230523 20:46:15 mysqld_safe Starting mariadbd daemon with databases from /config/databases
|
||||
2023-05-23 20:46:15 0 [Note] Starting MariaDB 10.6.12-MariaDB-log source revision 4c79e15cc3716f69c044d4287ad2160da8101cdc as process 386
|
||||
2023-05-23 20:46:15 0 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
|
||||
2023-05-23 20:46:15 0 [Note] InnoDB: Compressed tables use zlib 1.2.13
|
||||
2023-05-23 20:46:15 0 [Note] InnoDB: Number of pools: 1
|
||||
2023-05-23 20:46:15 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
|
||||
2023-05-23 20:46:15 0 [Note] mariadbd: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2023-05-23 20:46:15 0 [Note] InnoDB: Using Linux native AIO
|
||||
2023-05-23 20:46:15 0 [Note] InnoDB: Initializing buffer pool, total size = 268435456, chunk size = 134217728
|
||||
2023-05-23 20:46:15 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: 10.6.12 started; log sequence number 11661579; transaction id 3443
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: Loading buffer pool(s) from /config/databases/ib_buffer_pool
|
||||
2023-05-23 20:46:16 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2023-05-23 20:46:16 0 [Note] InnoDB: Buffer pool(s) load completed at 230523 20:46:16
|
||||
2023-05-23 20:46:16 0 [Note] Server socket created on IP: '0.0.0.0'.
|
||||
2023-05-23 20:46:16 0 [Note] Server socket created on IP: '::'.
|
||||
2023-05-23 20:46:16 0 [Note] /usr/bin/mariadbd: ready for connections.
|
||||
Version: '10.6.12-MariaDB-log' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
|
||||
2023-05-23 20:46:16 4 [Warning] Aborted connection 4 to db: 'unconnected' user: 'unauthenticated' host: 'localhost' (This connection closed normally without authentication)
|
||||
2023-05-23 21:42:48 0 [Note] /usr/bin/mariadbd (initiated by: unknown): Normal shutdown
|
||||
2023-05-23 21:42:48 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2023-05-23 21:42:48 0 [Note] InnoDB: Starting shutdown...
|
||||
2023-05-23 21:42:48 0 [Note] InnoDB: Dumping buffer pool(s) to /config/databases/ib_buffer_pool
|
||||
2023-05-23 21:42:48 0 [Note] InnoDB: Buffer pool(s) dump completed at 230523 21:42:48
|
||||
2023-05-23 21:42:48 0 [Note] InnoDB: Removed temporary tablespace data file: "./ibtmp1"
|
||||
2023-05-23 21:42:48 0 [Note] InnoDB: Shutdown completed; log sequence number 12394436; transaction id 4525
|
||||
2023-05-23 21:42:48 0 [Note] /usr/bin/mariadbd: Shutdown complete
|
||||
|
||||
230523 21:42:48 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
|
619
mariadb/databases/ib_buffer_pool
Normal file
619
mariadb/databases/ib_buffer_pool
Normal file
|
@ -0,0 +1,619 @@
|
|||
14,296
|
||||
14,295
|
||||
16,15
|
||||
15,11
|
||||
0,422
|
||||
0,421
|
||||
0,412
|
||||
0,402
|
||||
15,10
|
||||
0,400
|
||||
16,14
|
||||
0,387
|
||||
0,381
|
||||
0,379
|
||||
0,375
|
||||
0,373
|
||||
0,371
|
||||
14,90
|
||||
14,89
|
||||
14,88
|
||||
14,87
|
||||
14,86
|
||||
14,85
|
||||
14,84
|
||||
14,83
|
||||
14,82
|
||||
14,81
|
||||
14,80
|
||||
14,79
|
||||
14,78
|
||||
14,77
|
||||
14,76
|
||||
14,74
|
||||
14,73
|
||||
14,72
|
||||
14,68
|
||||
14,67
|
||||
14,66
|
||||
14,65
|
||||
14,64
|
||||
14,5
|
||||
14,4
|
||||
14,3
|
||||
14,2
|
||||
14,1
|
||||
14,0
|
||||
13,4
|
||||
13,3
|
||||
13,2
|
||||
13,1
|
||||
13,0
|
||||
12,8
|
||||
12,7
|
||||
12,6
|
||||
12,5
|
||||
12,4
|
||||
12,3
|
||||
12,2
|
||||
12,1
|
||||
12,0
|
||||
11,5
|
||||
11,4
|
||||
11,3
|
||||
11,2
|
||||
11,1
|
||||
11,0
|
||||
10,4
|
||||
10,3
|
||||
10,2
|
||||
10,1
|
||||
10,0
|
||||
9,5
|
||||
9,4
|
||||
9,3
|
||||
9,2
|
||||
9,1
|
||||
9,0
|
||||
8,5
|
||||
8,4
|
||||
8,3
|
||||
8,2
|
||||
8,1
|
||||
8,0
|
||||
7,5
|
||||
7,4
|
||||
7,3
|
||||
7,2
|
||||
7,1
|
||||
7,0
|
||||
6,5
|
||||
6,4
|
||||
6,3
|
||||
6,2
|
||||
6,1
|
||||
6,0
|
||||
5,6
|
||||
5,5
|
||||
5,4
|
||||
5,3
|
||||
5,2
|
||||
5,1
|
||||
5,0
|
||||
4,3
|
||||
4,2
|
||||
4,1
|
||||
4,0
|
||||
3,6
|
||||
3,5
|
||||
3,4
|
||||
3,3
|
||||
3,2
|
||||
3,1
|
||||
3,0
|
||||
2,6
|
||||
2,5
|
||||
2,4
|
||||
2,3
|
||||
2,2
|
||||
2,1
|
||||
2,0
|
||||
1,3
|
||||
1,2
|
||||
1,1
|
||||
1,0
|
||||
0,410
|
||||
0,324
|
||||
0,243
|
||||
0,9
|
||||
0,0
|
||||
0,1
|
||||
0,392
|
||||
0,300
|
||||
0,428
|
||||
0,299
|
||||
0,420
|
||||
0,298
|
||||
0,377
|
||||
0,297
|
||||
0,374
|
||||
0,296
|
||||
0,295
|
||||
0,424
|
||||
0,294
|
||||
0,416
|
||||
0,293
|
||||
0,372
|
||||
0,292
|
||||
0,413
|
||||
0,291
|
||||
0,370
|
||||
0,290
|
||||
0,368
|
||||
0,289
|
||||
0,369
|
||||
0,288
|
||||
0,431
|
||||
0,287
|
||||
0,430
|
||||
0,286
|
||||
0,285
|
||||
0,365
|
||||
0,284
|
||||
0,426
|
||||
0,283
|
||||
0,425
|
||||
0,282
|
||||
0,364
|
||||
0,281
|
||||
0,366
|
||||
0,280
|
||||
0,316
|
||||
0,279
|
||||
0,278
|
||||
0,277
|
||||
0,407
|
||||
0,276
|
||||
0,361
|
||||
0,275
|
||||
0,423
|
||||
0,274
|
||||
0,273
|
||||
0,419
|
||||
0,272
|
||||
0,418
|
||||
0,271
|
||||
14,91
|
||||
14,92
|
||||
14,94
|
||||
14,95
|
||||
14,97
|
||||
14,99
|
||||
14,101
|
||||
14,103
|
||||
14,104
|
||||
14,106
|
||||
14,107
|
||||
14,109
|
||||
14,111
|
||||
14,112
|
||||
14,114
|
||||
14,115
|
||||
14,117
|
||||
14,118
|
||||
14,120
|
||||
14,123
|
||||
14,124
|
||||
14,126
|
||||
14,127
|
||||
14,230
|
||||
14,232
|
||||
14,233
|
||||
14,235
|
||||
14,236
|
||||
14,238
|
||||
14,239
|
||||
14,241
|
||||
14,243
|
||||
14,244
|
||||
14,246
|
||||
14,247
|
||||
14,249
|
||||
14,251
|
||||
14,252
|
||||
14,254
|
||||
14,255
|
||||
14,257
|
||||
14,258
|
||||
14,260
|
||||
14,262
|
||||
14,263
|
||||
14,265
|
||||
14,266
|
||||
14,268
|
||||
14,270
|
||||
14,271
|
||||
14,273
|
||||
14,274
|
||||
14,276
|
||||
14,278
|
||||
14,279
|
||||
14,281
|
||||
14,282
|
||||
14,284
|
||||
14,285
|
||||
14,287
|
||||
14,289
|
||||
14,290
|
||||
14,292
|
||||
14,293
|
||||
14,320
|
||||
14,322
|
||||
14,323
|
||||
14,325
|
||||
14,326
|
||||
14,328
|
||||
14,329
|
||||
14,331
|
||||
14,333
|
||||
14,334
|
||||
14,336
|
||||
14,337
|
||||
14,339
|
||||
14,341
|
||||
14,342
|
||||
14,344
|
||||
14,345
|
||||
14,347
|
||||
14,348
|
||||
14,350
|
||||
14,352
|
||||
14,353
|
||||
14,355
|
||||
14,356
|
||||
14,358
|
||||
14,360
|
||||
14,361
|
||||
14,363
|
||||
14,364
|
||||
14,366
|
||||
14,368
|
||||
14,369
|
||||
14,371
|
||||
14,372
|
||||
14,374
|
||||
14,375
|
||||
14,377
|
||||
14,379
|
||||
14,380
|
||||
14,383
|
||||
15,0
|
||||
15,2
|
||||
15,4
|
||||
15,5
|
||||
15,7
|
||||
15,8
|
||||
16,0
|
||||
16,1
|
||||
16,3
|
||||
16,5
|
||||
16,6
|
||||
16,8
|
||||
16,9
|
||||
16,11
|
||||
16,13
|
||||
17,0
|
||||
17,2
|
||||
17,3
|
||||
18,0
|
||||
18,1
|
||||
18,3
|
||||
18,5
|
||||
18,6
|
||||
19,1
|
||||
19,2
|
||||
19,4
|
||||
19,6
|
||||
19,7
|
||||
20,0
|
||||
20,1
|
||||
20,3
|
||||
20,4
|
||||
20,6
|
||||
20,8
|
||||
20,9
|
||||
21,0
|
||||
21,1
|
||||
21,3
|
||||
21,5
|
||||
21,6
|
||||
22,0
|
||||
22,1
|
||||
22,3
|
||||
22,5
|
||||
22,6
|
||||
22,4
|
||||
22,2
|
||||
21,7
|
||||
21,4
|
||||
21,2
|
||||
20,10
|
||||
20,7
|
||||
20,5
|
||||
20,2
|
||||
19,8
|
||||
19,5
|
||||
19,3
|
||||
19,0
|
||||
18,4
|
||||
18,2
|
||||
17,4
|
||||
17,1
|
||||
16,12
|
||||
16,10
|
||||
16,7
|
||||
16,4
|
||||
16,2
|
||||
15,9
|
||||
15,6
|
||||
15,3
|
||||
15,1
|
||||
14,381
|
||||
14,378
|
||||
14,376
|
||||
14,373
|
||||
14,370
|
||||
14,367
|
||||
14,365
|
||||
14,362
|
||||
14,359
|
||||
14,357
|
||||
14,354
|
||||
14,351
|
||||
14,349
|
||||
14,346
|
||||
14,343
|
||||
14,340
|
||||
14,338
|
||||
14,335
|
||||
14,332
|
||||
14,330
|
||||
14,327
|
||||
14,324
|
||||
14,321
|
||||
14,294
|
||||
14,291
|
||||
14,288
|
||||
14,286
|
||||
14,283
|
||||
14,280
|
||||
14,277
|
||||
14,275
|
||||
14,272
|
||||
14,269
|
||||
14,267
|
||||
14,264
|
||||
14,261
|
||||
14,259
|
||||
14,256
|
||||
14,253
|
||||
14,250
|
||||
14,248
|
||||
14,245
|
||||
14,242
|
||||
14,240
|
||||
14,237
|
||||
14,234
|
||||
14,231
|
||||
14,192
|
||||
14,125
|
||||
14,121
|
||||
14,119
|
||||
14,116
|
||||
14,113
|
||||
14,110
|
||||
14,108
|
||||
14,105
|
||||
14,102
|
||||
14,100
|
||||
14,96
|
||||
14,93
|
||||
0,358
|
||||
0,270
|
||||
0,350
|
||||
0,269
|
||||
0,415
|
||||
0,268
|
||||
0,363
|
||||
0,267
|
||||
0,414
|
||||
0,266
|
||||
0,362
|
||||
0,265
|
||||
0,389
|
||||
0,264
|
||||
0,394
|
||||
0,263
|
||||
0,409
|
||||
0,262
|
||||
0,405
|
||||
0,261
|
||||
0,391
|
||||
0,260
|
||||
0,390
|
||||
0,259
|
||||
0,403
|
||||
0,258
|
||||
0,388
|
||||
0,257
|
||||
0,256
|
||||
0,315
|
||||
0,255
|
||||
0,385
|
||||
0,254
|
||||
0,384
|
||||
0,253
|
||||
0,252
|
||||
0,382
|
||||
0,251
|
||||
0,250
|
||||
0,411
|
||||
0,249
|
||||
0,386
|
||||
0,248
|
||||
0,378
|
||||
0,247
|
||||
0,399
|
||||
0,246
|
||||
0,245
|
||||
0,319
|
||||
0,244
|
||||
0,360
|
||||
0,242
|
||||
0,314
|
||||
0,241
|
||||
0,398
|
||||
0,240
|
||||
0,318
|
||||
0,239
|
||||
0,313
|
||||
0,238
|
||||
0,404
|
||||
0,237
|
||||
0,317
|
||||
0,236
|
||||
0,349
|
||||
0,235
|
||||
0,312
|
||||
0,234
|
||||
0,359
|
||||
0,233
|
||||
0,311
|
||||
0,232
|
||||
0,357
|
||||
0,231
|
||||
0,336
|
||||
0,230
|
||||
0,310
|
||||
0,229
|
||||
0,401
|
||||
0,228
|
||||
0,227
|
||||
0,397
|
||||
0,226
|
||||
0,330
|
||||
0,225
|
||||
0,356
|
||||
0,224
|
||||
0,355
|
||||
0,223
|
||||
0,354
|
||||
0,222
|
||||
0,353
|
||||
0,221
|
||||
0,352
|
||||
0,220
|
||||
0,308
|
||||
0,219
|
||||
0,309
|
||||
0,218
|
||||
0,329
|
||||
0,217
|
||||
0,351
|
||||
0,216
|
||||
0,307
|
||||
0,215
|
||||
0,395
|
||||
0,214
|
||||
0,213
|
||||
0,348
|
||||
0,212
|
||||
0,347
|
||||
0,211
|
||||
0,346
|
||||
0,210
|
||||
0,344
|
||||
0,209
|
||||
0,343
|
||||
0,208
|
||||
0,207
|
||||
0,342
|
||||
0,206
|
||||
0,341
|
||||
0,205
|
||||
0,301
|
||||
0,204
|
||||
0,340
|
||||
0,203
|
||||
0,202
|
||||
0,338
|
||||
0,201
|
||||
0,200
|
||||
0,337
|
||||
0,199
|
||||
0,335
|
||||
0,198
|
||||
0,334
|
||||
0,197
|
||||
0,333
|
||||
0,196
|
||||
0,380
|
||||
0,195
|
||||
0,367
|
||||
0,194
|
||||
0,332
|
||||
0,193
|
||||
0,331
|
||||
0,192
|
||||
0,328
|
||||
0,63
|
||||
0,62
|
||||
0,61
|
||||
0,325
|
||||
0,60
|
||||
0,323
|
||||
0,59
|
||||
0,322
|
||||
0,58
|
||||
0,321
|
||||
0,57
|
||||
0,320
|
||||
0,56
|
||||
0,447
|
||||
0,55
|
||||
0,446
|
||||
0,54
|
||||
0,445
|
||||
0,53
|
||||
0,444
|
||||
0,52
|
||||
0,393
|
||||
0,51
|
||||
0,443
|
||||
0,50
|
||||
0,442
|
||||
0,49
|
||||
0,441
|
||||
0,48
|
||||
0,440
|
||||
0,47
|
||||
0,438
|
||||
0,46
|
||||
0,434
|
||||
0,45
|
||||
0,432
|
||||
0,6
|
||||
0,5
|
||||
0,304
|
||||
0,303
|
||||
0,306
|
||||
0,305
|
||||
0,302
|
||||
0,12
|
||||
0,10
|
||||
0,8
|
||||
0,11
|
||||
0,4
|
||||
0,2
|
||||
0,3
|
||||
0,7
|
BIN
mariadb/databases/ib_logfile0
Normal file
BIN
mariadb/databases/ib_logfile0
Normal file
Binary file not shown.
BIN
mariadb/databases/ibdata1
Normal file
BIN
mariadb/databases/ibdata1
Normal file
Binary file not shown.
0
mariadb/databases/multi-master.info
Normal file
0
mariadb/databases/multi-master.info
Normal file
BIN
mariadb/databases/mysql/column_stats.MAD
Normal file
BIN
mariadb/databases/mysql/column_stats.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/column_stats.MAI
Normal file
BIN
mariadb/databases/mysql/column_stats.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/column_stats.frm
Normal file
BIN
mariadb/databases/mysql/column_stats.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/columns_priv.MAD
Normal file
BIN
mariadb/databases/mysql/columns_priv.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/columns_priv.MAI
Normal file
BIN
mariadb/databases/mysql/columns_priv.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/columns_priv.frm
Normal file
BIN
mariadb/databases/mysql/columns_priv.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/db.MAD
Normal file
BIN
mariadb/databases/mysql/db.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/db.MAI
Normal file
BIN
mariadb/databases/mysql/db.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/db.frm
Normal file
BIN
mariadb/databases/mysql/db.frm
Normal file
Binary file not shown.
2
mariadb/databases/mysql/db.opt
Normal file
2
mariadb/databases/mysql/db.opt
Normal file
|
@ -0,0 +1,2 @@
|
|||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_general_ci
|
BIN
mariadb/databases/mysql/event.MAD
Normal file
BIN
mariadb/databases/mysql/event.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/event.MAI
Normal file
BIN
mariadb/databases/mysql/event.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/event.frm
Normal file
BIN
mariadb/databases/mysql/event.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/func.MAD
Normal file
BIN
mariadb/databases/mysql/func.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/func.MAI
Normal file
BIN
mariadb/databases/mysql/func.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/func.frm
Normal file
BIN
mariadb/databases/mysql/func.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/general_log.CSM
Normal file
BIN
mariadb/databases/mysql/general_log.CSM
Normal file
Binary file not shown.
0
mariadb/databases/mysql/general_log.CSV
Normal file
0
mariadb/databases/mysql/general_log.CSV
Normal file
|
BIN
mariadb/databases/mysql/general_log.frm
Normal file
BIN
mariadb/databases/mysql/general_log.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/global_priv.MAD
Normal file
BIN
mariadb/databases/mysql/global_priv.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/global_priv.MAI
Normal file
BIN
mariadb/databases/mysql/global_priv.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/global_priv.frm
Normal file
BIN
mariadb/databases/mysql/global_priv.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/gtid_slave_pos.frm
Normal file
BIN
mariadb/databases/mysql/gtid_slave_pos.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/gtid_slave_pos.ibd
Normal file
BIN
mariadb/databases/mysql/gtid_slave_pos.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_category.MAD
Normal file
BIN
mariadb/databases/mysql/help_category.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_category.MAI
Normal file
BIN
mariadb/databases/mysql/help_category.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_category.frm
Normal file
BIN
mariadb/databases/mysql/help_category.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_keyword.MAD
Normal file
BIN
mariadb/databases/mysql/help_keyword.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_keyword.MAI
Normal file
BIN
mariadb/databases/mysql/help_keyword.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_keyword.frm
Normal file
BIN
mariadb/databases/mysql/help_keyword.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_relation.MAD
Normal file
BIN
mariadb/databases/mysql/help_relation.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_relation.MAI
Normal file
BIN
mariadb/databases/mysql/help_relation.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_relation.frm
Normal file
BIN
mariadb/databases/mysql/help_relation.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_topic.MAD
Normal file
BIN
mariadb/databases/mysql/help_topic.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_topic.MAI
Normal file
BIN
mariadb/databases/mysql/help_topic.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/help_topic.frm
Normal file
BIN
mariadb/databases/mysql/help_topic.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/index_stats.MAD
Normal file
BIN
mariadb/databases/mysql/index_stats.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/index_stats.MAI
Normal file
BIN
mariadb/databases/mysql/index_stats.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/index_stats.frm
Normal file
BIN
mariadb/databases/mysql/index_stats.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/innodb_index_stats.frm
Normal file
BIN
mariadb/databases/mysql/innodb_index_stats.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/innodb_index_stats.ibd
Normal file
BIN
mariadb/databases/mysql/innodb_index_stats.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/innodb_table_stats.frm
Normal file
BIN
mariadb/databases/mysql/innodb_table_stats.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/innodb_table_stats.ibd
Normal file
BIN
mariadb/databases/mysql/innodb_table_stats.ibd
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/plugin.MAD
Normal file
BIN
mariadb/databases/mysql/plugin.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/plugin.MAI
Normal file
BIN
mariadb/databases/mysql/plugin.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/plugin.frm
Normal file
BIN
mariadb/databases/mysql/plugin.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/proc.MAD
Normal file
BIN
mariadb/databases/mysql/proc.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/proc.MAI
Normal file
BIN
mariadb/databases/mysql/proc.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/proc.frm
Normal file
BIN
mariadb/databases/mysql/proc.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/procs_priv.MAD
Normal file
BIN
mariadb/databases/mysql/procs_priv.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/procs_priv.MAI
Normal file
BIN
mariadb/databases/mysql/procs_priv.MAI
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/procs_priv.frm
Normal file
BIN
mariadb/databases/mysql/procs_priv.frm
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/proxies_priv.MAD
Normal file
BIN
mariadb/databases/mysql/proxies_priv.MAD
Normal file
Binary file not shown.
BIN
mariadb/databases/mysql/proxies_priv.MAI
Normal file
BIN
mariadb/databases/mysql/proxies_priv.MAI
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue