1. View MySQL current time zone and time
(Recommended tutorial: mysql tutorial)
show variables like "%time_zone%"; #查看时区
#time_zone indicates that mysql uses the system's time zone, system_time_zone indicates that the system uses the CST time zone
select curtime(); #查看时间 select now(); #查看日期+时间
2. Modify the time zone
You can modify the time zone by modifying the my.cnf configuration file
# vim /etc/my.cnf
Add the following content in the [mysqld] area:
default-time_zone = '+8:00'
After the modification is completed, you need to restart MySQL for the configuration to take effect.
The above is the detailed content of How to modify the default time zone of mysql. For more information, please follow other related articles on the PHP Chinese website!