Mysql5.7錯誤日誌時間不對的解決辦法
MySQL 5.7的錯誤日誌時間和系統時間不一致,看起來費勁,查閱官方文件得知從MySQL 5.7.2 開始,新增了 log_timestamps 引數,它主要是控制 error log、genera log等日誌檔案的顯示時間引數:
官文如下:
This variable controls the timestamp time zone of error log messages, and of general query log and slow query log messages written to files. It does not affect the time zone of general query log and slow query log messages written to tables (mysql.general_log, mysql.slow_log). Rows retrieved from those tables can be converted from the local system time zone to any desired time zone with CONVERT_TZ() or by setting the session time_zone system variable.
Permitted log_timestamps values are UTC (the default) and SYSTEM (local system time zone).
Timestamps are written using ISO 8601 / RFC 3339 format: YYYY-MM-DDThh:mm:ss.uuuuuu plus a tail value of Z signifying Zulu time (UTC) or ±hh:mm (an offset from UTC).
This variable was added in MySQL 5.7.2. Before 5.7.2, timestamps in log messages were written using the local system time zone by default, not UTC. If you want the previous log message time zone default, set log_timestamps=SYSTEM.
做了如下修改後,顯示正常了:
點選(此處)摺疊或開啟
-
(root@localhost) [(none)]> show global variables like 'log_timestamps';
-
+----------------+-------+
-
| Variable_name | Value |
-
+----------------+-------+
-
| log_timestamps | UTC |
-
+----------------+-------+
-
1 row in set (0.01 sec)
-
-
(root@localhost) [(none)]> set global log_timestamps=SYSTEM;
-
Query OK, 0 rows affected (0.00 sec)
-
-
(root@localhost) [(none)]> SHOW global variables like 'log_timestamps';
-
+----------------+--------+
-
| Variable_name | Value |
-
+----------------+--------+
-
| log_timestamps | SYSTEM |
-
+----------------+--------+
- 1 row in set (0.01 sec)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2132032/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 電腦時間不準怎麼辦 電腦時間不對的解決辦法
- CATIA許可證時間錯誤的解決辦法
- Oracle歸檔日誌所在目錄時間不對&&Oracle叢集日誌時間顯示錯誤Oracle
- Mysql5.7 的錯誤日誌中最常見的note日誌MySql
- mongodb日誌太大的解決辦法MongoDB
- dns錯誤怎麼辦 dns錯誤的解決辦法DNS
- 【git】Git commit時提示錯誤時 解決辦法GitMIT
- unity player 顯示播放錯誤時的解決辦法Unity
- hadoop,hbase,zookeeper錯誤日誌及部分解決辦法(1)Hadoop
- SAP錯誤提示解決辦法
- scp出現錯誤的解決辦法
- samba一個錯誤的解決辦法!Samba
- 連線oracle錯誤解決辦法Oracle
- nginxFastCGI錯誤Primaryscriptunknown解決辦法NginxAST
- Unable to locate package錯誤解決辦法Package
- oracle 1455 錯誤解決辦法Oracle
- 畢設之錯誤解決辦法
- MySQL5.7 group by新特性報錯1055的解決辦法MySql
- win10時間老是不準怎麼辦 win10時間不對的解決教程Win10
- iOS路上遇到的錯誤及解決辦法iOS
- ORA-12705,錯誤的解決辦法
- SPFILE引數修改錯誤的解決辦法
- ORA-12170錯誤的解決辦法
- MySQL 8.0.18 錯誤日誌時間慢了8個小時MySql
- 時區錯誤導致oracle的EM不能啟動解決辦法Oracle
- Idea編譯錯誤解決辦法Idea編譯
- PHP編譯錯誤及解決辦法PHP編譯
- ORA-29339錯誤解決辦法
- ORA-54013錯誤解決辦法
- artisan日誌 root 許可權解決辦法
- Linux系統最近重啟時間、錯誤日誌Linux
- Oracle資料庫的歸檔日誌寫滿磁碟空間解決辦法Oracle資料庫
- DG日誌不應用,GAP,主備切換解決思路與辦法
- 開機checking file錯誤的解決辦法
- VPN連線800錯誤的解決辦法(轉)
- ORA-01034錯誤的解決辦法
- 安裝wsl錯誤的一種解決辦法
- mysql5.7日誌時間與系統時間不一致MySql