Onde estão os logs do MySQL? Fedora

1

Olá, acabei de instalar o MySQL no meu Fedora a partir do Source, com o cmake, make, make install etc. Está funcionando, mas onde posso encontrar logs do servidor? Eu olhei em / var / log, mas infelizmente não há nada com o mysql.

/etc/my.cnf

# For advice on how to change settings please see
# 
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.

[mysqld]
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin

# These are commonly set, remove the # and set as required.
# basedir = .....
# datadir = .....
# port = .....
# server_id = .....
# socket = .....

# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M 

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES    
    
por CSharpBeginner 16.10.2013 / 19:01

2 respostas

5

Se você tem o mysqld em execução, você pode inspecionar seus descritores abertos para ver onde ele está, por exemplo, usando proc:

[root@localhost ~]# ls -l 'pgrep mysqld | sed 's@.*@/proc/&/fd/@'' | grep log
l-wx------. 1 root root 64 Jul 23 10:47 1 -> /var/log/mysqld.log
l-wx------. 1 root root 64 Jul 23 10:47 2 -> /var/log/mysqld.log
lrwx------. 1 root root 64 Jul 23 10:47 8 -> /var/lib/mysql/ib_logfile0
lrwx------. 1 root root 64 Jul 23 10:47 9 -> /var/lib/mysql/ib_logfile1
[root@localhost ~]# 

Neste caso, é /var/log/mysqld.log

    
por 16.10.2013 / 19:14
1

Existem diferentes tipos de logs que são determinados pelas seguintes variáveis globais do MySQL:

Se você quiser ler o arquivo de log de erros, tente este comando:

sudo tail -f $(mysql -Nse "SELECT @@GLOBAL.log_error")

depois Control - C quando terminar.

    
por 07.06.2016 / 19:15