<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Curso_de_MariaDB_Desde_la_Consola%2Fmy.cnf</id>
	<title>Curso de MariaDB Desde la Consola/my.cnf - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Curso_de_MariaDB_Desde_la_Consola%2Fmy.cnf"/>
	<link rel="alternate" type="text/html" href="https://wiki.cabal.mx/index.php?title=Curso_de_MariaDB_Desde_la_Consola/my.cnf&amp;action=history"/>
	<updated>2026-04-06T16:59:37Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://wiki.cabal.mx/index.php?title=Curso_de_MariaDB_Desde_la_Consola/my.cnf&amp;diff=110387&amp;oldid=prev</id>
		<title>Rrc en 19:08 22 oct 2015</title>
		<link rel="alternate" type="text/html" href="https://wiki.cabal.mx/index.php?title=Curso_de_MariaDB_Desde_la_Consola/my.cnf&amp;diff=110387&amp;oldid=prev"/>
		<updated>2015-10-22T19:08:03Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#my.cnf | /etc/my.cnf]]&lt;br /&gt;
* [[:#server.cnf | /etc/my.cnf.d/server.cnf]]&lt;br /&gt;
* [[:#client.cnf | /etc/my.cnf.d/client.cnf]]&lt;br /&gt;
* [[:#mysql-clients.cnf | /etc/my.cnf.d/my-sql-clients.cnf]]&lt;br /&gt;
* [[:#auth_pam.cnf | /etc/my.cnf.d/auth_pam.cnf]]&lt;br /&gt;
* [[:#ha_federatedx.cnf | /etc/my.cnf.d/ha_federatedx.cnf]]&lt;br /&gt;
* [[:#query_response_time.cnf | /etc/my.cnf.d/query_response_time.cnf]]&lt;br /&gt;
* [[:#auth_socket.cnf | /etc/my.cnf.d/auth_socket.cnf]]&lt;br /&gt;
* [[:#handlersocket.cnf | /etc/my.cnf.d/handlersocket.cnf]]&lt;br /&gt;
* [[:#semisync_master.cnf | /etc/my.cnf.d/semisync_master.cnf]]&lt;br /&gt;
* [[:#locales.cnf | /etc/my.cnf.d/locales.cnf]]&lt;br /&gt;
* [[:#semisync_slave.cnf | /etc/my.cnf.d/semisync_slave.cnf]]&lt;br /&gt;
* [[:#feedback.cnf | /etc/my.cnf.d/feedback.cnf]]&lt;br /&gt;
* [[:#metadata_lock_info.cnf | /etc/my.cnf.d/metadata_lock_info.cnf]]&lt;br /&gt;
* [[:#server_audit.cnf | /etc/my.cnf.d/server_audit.cnf]]&lt;br /&gt;
* [[:#ha_archive.cnf | /etc/my.cnf.d/ha_archive.cnf]]&lt;br /&gt;
* [[:#ha_blackhole.cnf | /etc/my.cnf.d/ha_blackhole.cnf]]&lt;br /&gt;
* [[:#query_cache_info.cnf | /etc/my.cnf.d/sql_errlog.cnf]]&lt;br /&gt;
* [[:#sql_errlog.cnf | /etc/my.cnf.d/sql_errlog.cnf]]&lt;br /&gt;
&lt;br /&gt;
= my.cnf =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd etc]# cat /etc/my.cnf&lt;br /&gt;
# A generic my.cnf file based on /usr/share/mysql/my-medium.cnf&lt;br /&gt;
#&lt;br /&gt;
# This is for a system with little memory (32M - 64M) where MySQL plays&lt;br /&gt;
# an important part, or systems up to 128M where MySQL is used together with&lt;br /&gt;
# other programs (such as a web server)&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# The following options will be passed to all MySQL clients&lt;br /&gt;
[client]&lt;br /&gt;
user		= root&lt;br /&gt;
#password	= your_password&lt;br /&gt;
port		= 3306&lt;br /&gt;
socket		= /var/lib/mysql/mysql.sock&lt;br /&gt;
&lt;br /&gt;
# Here follows entries for some specific programs&lt;br /&gt;
&lt;br /&gt;
# The MySQL server&lt;br /&gt;
[mysqld]&lt;br /&gt;
user		= mysql&lt;br /&gt;
datadir		= /var/lib/mysql&lt;br /&gt;
port		= 3306&lt;br /&gt;
socket		= /var/lib/mysql/mysql.sock&lt;br /&gt;
pid-file	= /var/run/mysqld/mysqld.pid&lt;br /&gt;
skip-external-locking&lt;br /&gt;
key_buffer = 16M&lt;br /&gt;
max_allowed_packet = 32M&lt;br /&gt;
table_cache = 64&lt;br /&gt;
sort_buffer_size = 512K&lt;br /&gt;
net_buffer_length = 8K&lt;br /&gt;
read_buffer_size = 256K&lt;br /&gt;
read_rnd_buffer_size = 512K&lt;br /&gt;
myisam_sort_buffer_size = 8M&lt;br /&gt;
default-storage-engine = InnoDB&lt;br /&gt;
collation_server = utf8_unicode_ci&lt;br /&gt;
character_set_server = utf8&lt;br /&gt;
&lt;br /&gt;
# plugins&lt;br /&gt;
plugin_dir=/usr/lib64/mysql/plugin&lt;br /&gt;
&lt;br /&gt;
# http://dev.mysql.com/doc/refman/5.5/en/replication-semisync.html&lt;br /&gt;
;rpl_semi_sync_master=semisync_master.so&lt;br /&gt;
;rpl_semi_sync_slave=semisync_slave.so&lt;br /&gt;
&lt;br /&gt;
# Others options for Semisynchronous Replication&lt;br /&gt;
;rpl_semi_sync_master_enabled=1&lt;br /&gt;
;rpl_semi_sync_master_timeout=10&lt;br /&gt;
;rpl_semi_sync_slave_enabled=1&lt;br /&gt;
&lt;br /&gt;
# &amp;quot;Don&amp;#039;t&amp;quot; listen on a TCP/IP port at all. This can be a security enhancement,&lt;br /&gt;
# if all processes that need to connect to mysqld run on the same host.&lt;br /&gt;
# All interaction with mysqld must be made via Unix sockets or named pipes.&lt;br /&gt;
# Note that using this option without enabling named pipes on Windows&lt;br /&gt;
# (via the &amp;quot;enable-named-pipe&amp;quot; option) will render mysqld useless!&lt;br /&gt;
# &lt;br /&gt;
skip-networking&lt;br /&gt;
&lt;br /&gt;
# Disabling symbolic-links is recommended to prevent assorted security risks&lt;br /&gt;
symbolic-links=0&lt;br /&gt;
&lt;br /&gt;
# Replication Master Server (default)&lt;br /&gt;
# binary logging is required for replication&lt;br /&gt;
#log-bin=mysql-bin&lt;br /&gt;
&lt;br /&gt;
# required unique id between 1 and 2^32 - 1&lt;br /&gt;
# defaults to 1 if master-host is not set&lt;br /&gt;
# but will not function as a master if omitted&lt;br /&gt;
server-id	= 1&lt;br /&gt;
&lt;br /&gt;
# Replication Slave (comment out master section to use this)&lt;br /&gt;
#&lt;br /&gt;
# To configure this host as a replication slave, you can choose between&lt;br /&gt;
# two methods :&lt;br /&gt;
#&lt;br /&gt;
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -&lt;br /&gt;
#    the syntax is:&lt;br /&gt;
#&lt;br /&gt;
#    CHANGE MASTER TO MASTER_HOST=&amp;lt;host&amp;gt;, MASTER_PORT=&amp;lt;port&amp;gt;,&lt;br /&gt;
#    MASTER_USER=&amp;lt;user&amp;gt;, MASTER_PASSWORD=&amp;lt;password&amp;gt; ;&lt;br /&gt;
#&lt;br /&gt;
#    where you replace &amp;lt;host&amp;gt;, &amp;lt;user&amp;gt;, &amp;lt;password&amp;gt; by quoted strings and&lt;br /&gt;
#    &amp;lt;port&amp;gt; by the &amp;quot;master&amp;#039;s&amp;quot; port number (3306 by default).&lt;br /&gt;
#&lt;br /&gt;
#    Example:&lt;br /&gt;
#&lt;br /&gt;
#    CHANGE MASTER TO MASTER_HOST=&amp;#039;125.564.12.1&amp;#039;, MASTER_PORT=3306,&lt;br /&gt;
#    MASTER_USER=&amp;#039;joe&amp;#039;, MASTER_PASSWORD=&amp;#039;secret&amp;#039;;&lt;br /&gt;
#&lt;br /&gt;
# OR&lt;br /&gt;
#&lt;br /&gt;
# 2) Set the variables below. However, in case you choose this method, then&lt;br /&gt;
#    start replication for the first time (even unsuccessfully, for example&lt;br /&gt;
#    if you mistyped the password in master-password and the slave fails to&lt;br /&gt;
#    connect), the slave will create a master.info file, and any later&lt;br /&gt;
#    change in this file to the &amp;quot;variables&amp;#039;&amp;quot; values below will be ignored and&lt;br /&gt;
#    overridden by the content of the master.info file, unless you shutdown&lt;br /&gt;
#    the slave server, delete master.info and restart the slaver server.&lt;br /&gt;
#    For that reason, you may want to leave the lines below untouched&lt;br /&gt;
#    (commented) and instead use CHANGE MASTER TO (see above)&lt;br /&gt;
#&lt;br /&gt;
# required unique id between 2 and 2^32 - 1&lt;br /&gt;
# (and different from the master)&lt;br /&gt;
# defaults to 2 if master-host is set&lt;br /&gt;
# but will not function as a slave if omitted&lt;br /&gt;
#server-id       = 2&lt;br /&gt;
#&lt;br /&gt;
# The replication master for this slave - required&lt;br /&gt;
#master-host     =   &amp;lt;hostname&amp;gt;&lt;br /&gt;
#&lt;br /&gt;
# The username the slave will use for authentication when connecting&lt;br /&gt;
# to the master - required&lt;br /&gt;
#master-user     =   &amp;lt;username&amp;gt;&lt;br /&gt;
#&lt;br /&gt;
# The password the slave will authenticate with when connecting to&lt;br /&gt;
# the master - required&lt;br /&gt;
#master-password =   &amp;lt;password&amp;gt;&lt;br /&gt;
#&lt;br /&gt;
# The port the master is listening on.&lt;br /&gt;
# optional - defaults to 3306&lt;br /&gt;
#master-port     =  &amp;lt;port&amp;gt;&lt;br /&gt;
#&lt;br /&gt;
# binary logging - not required for slaves, but recommended&lt;br /&gt;
#log-bin=mysql-bin&lt;br /&gt;
&lt;br /&gt;
# Point the following paths to different dedicated disks&lt;br /&gt;
tmpdir		= /var/tmp&lt;br /&gt;
#log-update 	= /path-to-dedicated-directory/hostname&lt;br /&gt;
&lt;br /&gt;
# Uncomment the following if you are using BDB tables&lt;br /&gt;
#bdb_cache_size = 4M&lt;br /&gt;
#bdb_max_lock = 10000&lt;br /&gt;
&lt;br /&gt;
# Uncomment the following if you are using InnoDB tables&lt;br /&gt;
innodb_data_home_dir = /var/lib/mysql/&lt;br /&gt;
innodb_data_file_path = ibdata1:10M:autoextend&lt;br /&gt;
innodb_log_group_home_dir = /var/lib/mysql/&lt;br /&gt;
innodb_log_arch_dir = /var/lib/mysql/&lt;br /&gt;
# You can set .._buffer_pool_size up to 50 - 80 %&lt;br /&gt;
# of RAM but beware of setting memory usage too high&lt;br /&gt;
innodb_buffer_pool_size = 16M&lt;br /&gt;
innodb_additional_mem_pool_size = 2M&lt;br /&gt;
# Set .._log_file_size to 25 % of buffer pool size&lt;br /&gt;
innodb_log_file_size = 5M&lt;br /&gt;
innodb_log_buffer_size = 8M&lt;br /&gt;
innodb_flush_log_at_trx_commit = 1&lt;br /&gt;
innodb_lock_wait_timeout = 50&lt;br /&gt;
innodb_file_per_table&lt;br /&gt;
&lt;br /&gt;
#bind-address=192.168.100.1&lt;br /&gt;
&lt;br /&gt;
[mysqldump]&lt;br /&gt;
quick&lt;br /&gt;
max_allowed_packet = 16M&lt;br /&gt;
&lt;br /&gt;
[mysql]&lt;br /&gt;
no-auto-rehash&lt;br /&gt;
# Remove the next comment character if you are not familiar with SQL&lt;br /&gt;
#safe-updates&lt;br /&gt;
default-character-set = utf8&lt;br /&gt;
&lt;br /&gt;
[isamchk]&lt;br /&gt;
key_buffer = 20M&lt;br /&gt;
sort_buffer_size = 20M&lt;br /&gt;
read_buffer = 2M&lt;br /&gt;
write_buffer = 2M&lt;br /&gt;
&lt;br /&gt;
[myisamchk]&lt;br /&gt;
key_buffer = 20M&lt;br /&gt;
sort_buffer_size = 20M&lt;br /&gt;
read_buffer = 2M&lt;br /&gt;
write_buffer = 2M&lt;br /&gt;
&lt;br /&gt;
[mysqlhotcopy]&lt;br /&gt;
interactive-timeout&lt;br /&gt;
&lt;br /&gt;
[mysql.server]&lt;br /&gt;
user=mysql&lt;br /&gt;
basedir=/usr&lt;br /&gt;
&lt;br /&gt;
[mysqld_safe]&lt;br /&gt;
log-error=/var/log/mysqld/mysqld.log&lt;br /&gt;
pid-file=/var/run/mysqld/mysqld.pid&lt;br /&gt;
&lt;br /&gt;
!includedir /etc/my.cnf.d&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== server.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@myrddin ~]$ cat /etc/my.cnf.d/server.cnf &lt;br /&gt;
#&lt;br /&gt;
# These groups are read by MariaDB server.&lt;br /&gt;
# Use it for options that only the server (but not clients) should see&lt;br /&gt;
#&lt;br /&gt;
# See the examples of server my.cnf files in /usr/share/mysql/&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# this is read by the standalone daemon and embedded servers&lt;br /&gt;
[server]&lt;br /&gt;
&lt;br /&gt;
# this is only for the mysqld standalone daemon&lt;br /&gt;
[mysqld]&lt;br /&gt;
&lt;br /&gt;
# this is only for embedded server&lt;br /&gt;
[embedded]&lt;br /&gt;
&lt;br /&gt;
# This group is only read by MariaDB servers, not by MySQL.&lt;br /&gt;
# If you use the same .cnf file for MySQL and MariaDB,&lt;br /&gt;
# you can put MariaDB-only options here&lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
# This group is only read by MariaDB-10.0 servers.&lt;br /&gt;
# If you use the same .cnf file for MariaDB of different versions,&lt;br /&gt;
# use this group for options that older servers &amp;quot;don&amp;#039;t&amp;quot; understand&lt;br /&gt;
[mariadb-10.0]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== client.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@myrddin ~]$ cat /etc/my.cnf.d/client.cnf &lt;br /&gt;
#&lt;br /&gt;
# These two groups are read by the client library&lt;br /&gt;
# Use it for options that affect all clients, but not the server&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
[client]&lt;br /&gt;
&lt;br /&gt;
# This group is not read by mysql client library,&lt;br /&gt;
# If you use the same .cnf file for MySQL and MariaDB,&lt;br /&gt;
# use it for MariaDB-only client options&lt;br /&gt;
[client-mariadb]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== mysql-clients.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
[rrc@myrddin ~]$ cat /etc/my.cnf.d/mysql-clients.cnf &lt;br /&gt;
#&lt;br /&gt;
# These groups are read by MariaDB command-line tools&lt;br /&gt;
# Use it for options that affect only one utility&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
[mysql]&lt;br /&gt;
&lt;br /&gt;
[mysql_upgrade]&lt;br /&gt;
&lt;br /&gt;
[mysqladmin]&lt;br /&gt;
&lt;br /&gt;
[mysqlbinlog]&lt;br /&gt;
&lt;br /&gt;
[mysqlcheck]&lt;br /&gt;
&lt;br /&gt;
[mysqldump]&lt;br /&gt;
&lt;br /&gt;
[mysqlimport]&lt;br /&gt;
&lt;br /&gt;
[mysqlshow]&lt;br /&gt;
&lt;br /&gt;
[mysqlslap]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== auth_pam.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat auth_pam.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=auth_pam.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ha_federatedx.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat ha_federatedx.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=ha_federatedx.so&lt;br /&gt;
&lt;br /&gt;
# activate the federated storage engine&lt;br /&gt;
federated&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== query_response_time.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat query_response_time.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=query_response_time.so&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== auth_socket.cnf  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat auth_socket.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=auth_socket.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== handlersocket.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat handlersocket.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=handlersocket.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== semisync_master.cnf ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat semisync_master.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=semisync_master.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== locales.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat locales.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=locales.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== semisync_slave.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat semisync_slave.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=semisync_slave.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== feedback.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat feedback.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=feedback.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== metadata_lock_info.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat metadata_lock_info.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=metadata_lock_info.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== server_audit.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat server_audit.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=server_audit.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ha_archive.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat ha_archive.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=ha_archive.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ha_blackhole.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat ha_blackhole.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=ha_blackhole.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== query_cache_info.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat query_cache_info.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=query_cache_info.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== sql_errlog.cnf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sql&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@Pridd my.cnf.d]# cat sql_errlog.cnf &lt;br /&gt;
[mariadb]&lt;br /&gt;
&lt;br /&gt;
plugin-load-add=sql_errlog.so&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:MariaDB Desde la Consola]]&lt;br /&gt;
[[Category: CursoMatiaDB]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>