반응형
<확인>
*간단한 확인
select now();
*Time Zone 설정이 되어 있지 않다면 0
select count(*) from mysql.time_zone;
*Time Zone 국가 (KST, EEST ..)
select @@system_time_zone;
*Time Zone 정보
SELECT @@global.time_zone, @@session.time_zone;
> SYSTEM SYSTEM
<변경>
vi /etc/my.cnf
set time_zone='-07:00';
추가후
systemctl restart mysqld
확인
select now();
[출처]https://www.inmotionhosting.com/support/website/databases/how-to-change-mysql-server-time-zone
728x90
'[개발관련] > Database(Mysql)' 카테고리의 다른 글
[Mysql]update쿼리 수행 시 Truncated incorrect DOUBLE value: '-Infinity' (0) | 2019.06.04 |
---|---|
GROUP BY 사용시 only_full_group_by 관련 에러 발생시 (0) | 2019.05.29 |
쿼리 연습 ex )세로축은 product_name별, 가로축은 주문년도를 "2015년", "2016년"으로 구성하여 product_name별, 년도별 주문건수를 집계하세요. (주문건수가 없으면 0으로 표시) (0) | 2019.04.07 |
상관서브쿼리(Correlated Subquery) (0) | 2019.04.07 |
NOT IN, NOT EXIST 정리 (0) | 2019.04.07 |