修改MySQL的時區,涉及參數time_zone

來源:互聯網
上載者:User

標籤:zone   star   stat   mysqld   val   doc   msyql   default   variables   

原地址:http://blog.csdn.net/mchdba/article/details/9763521

首先需要查看mysql的當前時區,用time_zone參數

[html] view plain copy
  1. mysql> show variables like ‘%time_zone%‘;     
  2. +------------------+--------+  
  3. | Variable_name    | Value  |  
  4. +------------------+--------+  
  5. | system_time_zone | CST    |  
  6. | time_zone        | SYSTEM |  
  7. +------------------+--------+  
  8. 2 rows in set (0.00 sec)  



1 可以通過修改my.cnf
在 [mysqld] 之下加
default-time-zone=timezone
來修改時區。如:
default-time-zone = ‘+8:00‘
修改完了記得記得重啟msyql
注意一定要在 [mysqld] 之下加 ,否則會出現 unknown variable ‘default-time-zone=+8:00‘

2 另外也可以通過命令列線上修改

[html] view plain copy
  1. set time_zone = timezone  
  2. 比如北京時間(GMT+0800)  
  3. set time_zone = ‘+8:00‘; 如下:  
  4. mysql> set time_zone=‘+8:00‘;  
  5. Query OK, 0 rows affected (0.00 sec)  
  6.   
  7. mysql> show variables like ‘%time_zone%‘;     
  8. +------------------+--------+  
  9. | Variable_name    | Value  |  
  10. +------------------+--------+  
  11. | system_time_zone | CST    |  
  12. | time_zone        | +08:00 |  
  13. +------------------+--------+  
  14. 2 rows in set (0.00 sec)  


 

3 再通過select now()來驗證時區

[html] view plain copy
  1. mysql> show variables like ‘%time_zone%‘;     
  2. +------------------+--------+  
  3. | Variable_name    | Value  |  
  4. +------------------+--------+  
  5. | system_time_zone | CST    |  
  6. | <span style="color:#3366ff;">time_zone        | +08:00 </span>|  
  7. +------------------+--------+  
  8. 2 rows in set (0.00 sec)  
  9.   
  10. mysql> select now();  
  11. +---------------------+  
  12. | now()               |  
  13. +---------------------+  
  14. | <span style="color:#3333ff;">2013-08-05 10:35:31 </span>|  
  15. +---------------------+  
  16. 1 row in set (0.00 sec)  
  17.   
  18. mysql>  <span style="color:#ff0000;">set </span><span style="color:#ff0000;">time_zone=‘+0:00‘;  
  19. </span>Query OK, 0 rows affected (0.00 sec)  
[html] view plain copy
  1. mysql> show variables like ‘%time_zone%‘;  
  2. +------------------+--------+  
  3. | Variable_name    | Value  |  
  4. +------------------+--------+  
  5. | system_time_zone | CST    |  
  6. |<span style="color:#ff0000;"> time_zone        | +00:00 </span>|  
  7. +------------------+--------+  
  8. 2 rows in set (0.00 sec)  
[html] view plain copy
  1. mysql> select now();  
  2. +---------------------+  
  3. | now()               |  
  4. +---------------------+  
  5. | <span style="color:#ff0000;">2013-08-05 02:35:43 </span>|  
  6. +---------------------+  
  7. 1 row in set (0.00 sec)  


 

參考文獻: http://dev.mysql.com/doc/refman/5.7/en/time-zone-leap-seconds.html

 

修改MySQL的時區,涉及參數time_zone

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.