How to view and modify the time zone in MySQL

How to view and modify the time zone in MySQL

Today I found that a program inserted an incorrect time, and the field was configured with the default value CURRENT_TIMESTAMP. I initially determined that it was a problem with the database time zone setting.

Check time zone

Log in to the database to view the time zone configuration:

mysql> show variables like '%time_zone%';
+------------------+--------+
| Variable_name | Value |
+------------------+--------+
| system_time_zone | EDT |
| time_zone | SYSTEM |
+------------------+--------+
2 rows in set (0.00 sec)
  • system_time_zone indicates that the time zone used by the system is EDT, which is Eastern Daylight Saving Time (-4h) in North America.
  • time_zone indicates that MySQL uses the system's time zone. That is, if no time zone information is set when connecting, this time zone configuration will be used.

Change time zone

To change the time zone:

# Only change the time zone of the current session and stop the session from being invalidated set time_zone = '+8:00';

# Modify the global time zone configuration set global time_zone = '+8:00';
flush privileges;

Of course, you can also modify the configuration file (my.cnf) to achieve the configuration, but you need to restart the service.

# vim /etc/my.cnf ##Add default-time_zone = '+8:00' in the [mysqld] area
# /etc/init.d/mysqld restart ##Restart mysql to make the new time zone take effect

By the way, unlike China, the United States has 4 time zones...

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • mysql solves time zone related problems
  • Detailed explanation of mysql time zone problem in Java
  • Summary of methods for modifying MySQL time zone
  • How to distinguish uppercase and lowercase letters in strings when querying MySQL
  • mysql time zone problem
  • Steps to solve the MySQL 8.0 time zone problem

<<:  Detailed explanation of setting static ip network card for CentOS 8 VMware virtual machine to access the Internet

>>:  Mini Programs use Mini Program Cloud to implement WeChat payment functions

Recommend

Introduction to the use of the indeterminate property of the checkbox

When we use the folder properties dialog box in Wi...

Instructions for using the meta viewport tag (mobile browsing zoom control)

When OP opens a web page with the current firmwar...

How to install MySQL and MariaDB in Docker

Relationship between MySQL and MariaDB MariaDB da...

JavaScript Dom implements the principle and example of carousel

If we want to make a carousel, we must first unde...

Summary of MySQL InnoDB locks

Table of contents 1. Shared and Exclusive Locks 2...

How to Monitor Linux Memory Usage Using Bash Script

Preface There are many open source monitoring too...

Detailed explanation of data type issues in JS array index detection

When I was writing a WeChat applet project, there...

Detailed explanation of fs module and Path module methods in Node.js

Overview: The filesystem module is a simple wrapp...

Some summary of MySQL's fuzzy query like

1. Common usage: (1) Use with % % represents a wi...

9 Tips for Web Page Layout

<br />Related articles: 9 practical suggesti...

CentOS uses expect to remotely execute scripts and commands in batches

Sometimes we may need to operate servers in batch...

HTML fixed title column, title header table specific implementation code

Copy code The code is as follows: <!DOCTYPE ht...

MySQL database import and export data error solution example explanation

Exporting Data Report an error SHOW VARIABLES LIK...

js implements table drag options

This article example shares the specific code of ...