您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“Mysql時區錯誤問題怎么解決”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Mysql時區錯誤問題怎么解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
在做項目的時候突然遇到以下的報錯,可以看到是說 數據庫的時區錯誤,這里使用的是Mysql 8.0.15數據庫。
這里試用了idea提供的數據庫可視化插件。
以下報錯使得無法訪問數據庫。
org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.sql.SQLException: The server time zone value '?D1ú±ê×?ê±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support. ### The error may exist in StudentMapper.xml ### The error may involve ll.getAll ### The error occurred while executing a query ### Cause: java.sql.SQLException: The server time zone value '?D1ú±ê×?ê±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
這里首先考慮是數據庫本身的默認時區設置的問題,
其次考慮在設置idea數據庫可視化插件連接的時候的時區的設置問題
通過以下步驟解決了此問題:
打開命令窗口,進入mysql服務:
接著查詢時區:
show variables like "%time_zone%";
這里顯示SYSTEM表示跟隨系統,一般情況下是沒有問題的,但是偶爾也會出現問題,這里我們就直接更改成'+8:00'
set global time_zone='+08:00';
注意:這只是臨時修改,重啟mysql服務后就會失效
下面介紹永久修改:
永久的修改:修改mysql的配置文件my.ini,添加:default-time-zone=’+08:00’,重啟mysql生效,注意一定要在 [mysqld] 之下加 ,否則會出現 unknown variable ‘default-time-zone=+8:00’
接下來再去idea里面測試一下。
發現結果還是報錯,那么據考慮是idea數據庫可視化插件的鏈接配置問題。
接下來修改idea數據庫可視化插件配置:
在這里加上時區’+8:00’,進行測試。完美解決。
讀到這里,這篇“Mysql時區錯誤問題怎么解決”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。