1

Здравствуйте, я только что установил MySQL на мою Fedora из Source, с помощью cmake, make, make install и т.д. Это работает, но где я могу найти логи сервера? Я посмотрел в /var /log, но, к сожалению, ничего с 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    

2 ответа2

5

Если у вас запущен mysqld, вы можете проверить его открытые дескрипторы, чтобы увидеть, куда он входит, например, с помощью 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 ~]# 

В этом случае /var/log/mysqld.log

1

Существуют различные типы журналов, которые определяются следующими глобальными переменными MySQL:

  • log_error для журнала сообщений об ошибках;
  • general_log_file для общего файла журнала запросов (включается в general_log);
  • slow_query_log_file для файла журнала медленных запросов (включается slow_query_log);

Если вы хотите прочитать файл журнала ошибок, попробуйте следующую команду:

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

затем нажмите Control - C, когда закончите.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .