mirror of
https://github.com/MariaDB/server.git
synced 2025-05-31 08:42:45 +03:00
include/mysql/plugin.h: warning. no int/realsize mysys/my_getopt.c: combination of prefixes (e.g. --loose-skip-) didn't work sql/event_queue.cc: warning sql/handler.cc: assert sql/handler.h: comment sql/item_create.cc: warnings sql/log.cc: warnings sql/mysqld.cc: wl#2936 - fixing problems (memory leak in load_defaults, garbage in opt_[slow_]logname sql/partition_element.h: warnings sql/rpl_utility.h: warnings sql/set_var.cc: comment sql/set_var.h: warnings sql/sql_class.cc: warnings sql/sql_parse.cc: warnings sql/sql_plugin.cc: wl#2936 - fixing problems: portability, coding style, reporting of spurious errors, crashes, incorrect help output storage/example/ha_example.cc: comment storage/innobase/handler/ha_innodb.cc: wl#2936 - fixing problems (crash)
95 lines
1.6 KiB
Plaintext
95 lines
1.6 KiB
Plaintext
SHOW VARIABLES LIKE 'server_id';
|
|
Variable_name Value
|
|
server_id 1
|
|
SHOW INSTANCES;
|
|
instance_name state
|
|
mysqld1 XXXXX
|
|
mysqld2 offline
|
|
SHOW INSTANCE OPTIONS mysqld1;
|
|
option_name value
|
|
instance_name VALUE
|
|
socket VALUE
|
|
pid-file VALUE
|
|
port VALUE
|
|
datadir VALUE
|
|
log VALUE
|
|
log-error VALUE
|
|
log-slow-queries VALUE
|
|
language VALUE
|
|
character-sets-dir VALUE
|
|
basedir VALUE
|
|
server_id VALUE
|
|
skip-stack-trace VALUE
|
|
loose-skip-innodb VALUE
|
|
loose-skip-ndbcluster VALUE
|
|
log-output VALUE
|
|
SHOW INSTANCE OPTIONS mysqld2;
|
|
option_name value
|
|
instance_name VALUE
|
|
socket VALUE
|
|
pid-file VALUE
|
|
port VALUE
|
|
datadir VALUE
|
|
log VALUE
|
|
log-error VALUE
|
|
log-slow-queries VALUE
|
|
language VALUE
|
|
character-sets-dir VALUE
|
|
basedir VALUE
|
|
server_id VALUE
|
|
skip-stack-trace VALUE
|
|
loose-skip-innodb VALUE
|
|
loose-skip-ndbcluster VALUE
|
|
nonguarded VALUE
|
|
log-output VALUE
|
|
START INSTANCE mysqld2;
|
|
Success: the process has been started.
|
|
STOP INSTANCE mysqld2;
|
|
Success: the process has been stopped.
|
|
SHOW mysqld1 LOG FILES;
|
|
Logfile Path File size
|
|
ERROR LOG PATH FILE_SIZE
|
|
GENERAL LOG PATH FILE_SIZE
|
|
SLOW LOG PATH FILE_SIZE
|
|
SHOW mysqld2 LOG FILES;
|
|
Logfile Path File size
|
|
ERROR LOG PATH FILE_SIZE
|
|
GENERAL LOG PATH FILE_SIZE
|
|
SLOW LOG PATH FILE_SIZE
|
|
SHOW mysqld1 LOG ERROR 10;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld1 LOG SLOW 10;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld1 LOG GENERAL 10;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld1 LOG ERROR 10, 2;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld1 LOG SLOW 10, 2;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld1 LOG GENERAL 10, 2;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld2 LOG ERROR 10;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld2 LOG SLOW 10;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld2 LOG GENERAL 10;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld2 LOG ERROR 10, 2;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld2 LOG SLOW 10, 2;
|
|
Log
|
|
LOG_DATA
|
|
SHOW mysqld2 LOG GENERAL 10, 2;
|
|
Log
|
|
LOG_DATA
|