Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Software >> Services >> RDBMS >> MariaDB >> How to current system variables in the running instance

## login as root user

mysql -uroot -p

## e.g. show variables that end with log

MariaDB [(none)]> show variables like '%log';
+----------------------------------+-------+
| Variable_name                    | Value |
+----------------------------------+-------+
| back_log                         | 50    |
| general_log                      | ON    |
| innodb_locks_unsafe_for_binlog   | OFF   |
| innodb_recovery_update_relay_log | OFF   |
| log                              | ON    |
| relay_log                        |       |
| slow_query_log                   | OFF   |
| sync_binlog                      | 0     |
| sync_relay_log                   | 0     |
+----------------------------------+-------+



[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]