Skip to content

Commit

Permalink
Fix deploy 1700028675 (#272)
Browse files Browse the repository at this point in the history
* fix: Solving the timezone issue in Redis, as well as the problem of MySQL logs always being in UTC timezone.

* fix: change the config path of slow_log into /tmp directory in mysqld.cnf file
  • Loading branch information
fxiang21 authored Nov 22, 2023
1 parent 213bda6 commit 981f8b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/mysqld.cnf
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ read_rnd_buffer_size=512K
skip-name-resolve
max_connections=1000
slow_query_log = ON
slow_query_log_file = /var/log/mysql_slow.log
slow_query_log_file = /tmp/mysql_slow.log
long_query_time = 1
sql_mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
#log-error = /var/log/mysql/error.log
# By default we only accept connections from localhost
#bind-address = 127.0.0.1
# Disabling symbolic-links is recommended to prevent assorted security risks
log_timestamps = SYSTEM
log_timestamps = SYSTEM

0 comments on commit 981f8b0

Please sign in to comment.