乐趣区

关于python:开发中经常需要确认mysql的一些信息

查看 Mysql 版本

SELECT VERSION();

查看 general_log 日志相干信息

查看是否关上以及门路

SHOW VARIABLES LIKE 'general%';

关上

set GLOBAL general_log='ON';

时区

查看以后时区

show variables like "%time_zone%";

设置为 UTC 时区

# vim /etc/my.cnf ## 在 [mysqld] 区域中加上
default-time_zone = '+8:00'
# /etc/init.d/mysqld restart ## 重启 mysql 使新时区失效
退出移动版