Mysql
 sql >> Database >  >> RDS >> Mysql

strumento di monitoraggio delle query mysql

È possibile modificare il file di configurazione e abilitare la registrazione. In my.cnf cerca:

#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.

# log = /var/log/mysql/mysql.log

Decommenta il log line di quanto puoi usare tail per monitorare le query:

tail -f /var/log/mysql/mysql.log

Devi riavviare il server per applicare la nuova configurazione.