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)
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:
|
>>: Mini Programs use Mini Program Cloud to implement WeChat payment functions
When we use the folder properties dialog box in Wi...
When OP opens a web page with the current firmwar...
Relationship between MySQL and MariaDB MariaDB da...
If we want to make a carousel, we must first unde...
Table of contents 1. Shared and Exclusive Locks 2...
Preface There are many open source monitoring too...
When I was writing a WeChat applet project, there...
Overview: The filesystem module is a simple wrapp...
1. Common usage: (1) Use with % % represents a wi...
<br />Related articles: 9 practical suggesti...
Sometimes we may need to operate servers in batch...
Copy code The code is as follows: <!DOCTYPE ht...
1. Operating Environment vmware14pro Ubuntu 16.04...
Exporting Data Report an error SHOW VARIABLES LIK...
This article example shares the specific code of ...