Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 822 Bytes

File metadata and controls

33 lines (24 loc) · 822 Bytes

Database Related Stuff


Table of Contents


PostgreSQL

Stuff related to postgresql.

Enable Logging Queries

  • Usually adjusting postgres.conf (main config usually /etc/postgresql/_VERSION_/main/postgresql.conf) as follows is enough (restart/reload of service afterwards may be needed)
log_statement = 'all'

MySQL

Stuff related to mysql.

Enable Logging Queries

  • Usually adjusting my.cnf (main config usually /etc/mysql/my.cnf) as follows is enough (restart/reload of service afterwards may be needed)
# section [mysqld]
general_log             = 1
general_log_file        = /var/log/mysql/mysql.log