mirror of https://github.com/veops/cmdb.git
Fix deploy 1700028675 (#272)
* 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
This commit is contained in:
parent
213bda671c
commit
981f8b0145
|
@ -46,7 +46,7 @@ read_rnd_buffer_size=512K
|
||||||
skip-name-resolve
|
skip-name-resolve
|
||||||
max_connections=1000
|
max_connections=1000
|
||||||
slow_query_log = ON
|
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
|
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"
|
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
|
#log-error = /var/log/mysql/error.log
|
||||||
|
|
Loading…
Reference in New Issue