반응형
재시작 시 mariadb가 시간대를 재설정하지 않도록 하려면 어떻게 해야 합니까?
restart mariadb에서 매번 시간대를 재설정합니다.
MariaDB [(none)]> SELECT @@global.time_zone;
+--------------------+
| @@global.time_zone |
+--------------------+
| Europe/Amsterdam |
+--------------------+
1 row in set (0.000 sec)
MariaDB [(none)]> \q;
시간대는 유럽/암스테르담입니다.그런데 막상 다시 시작해보면 왠지 SYSTEM으로 바뀌게 됩니다.
me@dbhost:~/ $ sudo systemctl restart mysqld;
me@dbhost:~/ $ mysql -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 9
Server version: 10.3.14-MariaDB-log Source distribution
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> SELECT @@global.time_zone;
+--------------------+
| @@global.time_zone |
+--------------------+
| SYSTEM |
+--------------------+
1 row in set (0.000 sec)
이것은 왜이며, 어떻게 예방할 수 있습니까?
[mariadb]
...
default_time_zone = 'Europe/Amsterdam';
언급URL : https://stackoverflow.com/questions/56088807/how-do-i-prevent-mariadb-to-reset-timezone-on-restart
반응형
'programing' 카테고리의 다른 글
jQuery를 사용하여 두 배열의 Javascript 객체 비교 (0) | 2023.09.07 |
---|---|
Alter Table Add Primary Key 시 PHP 반환 오류 (0) | 2023.09.07 |
Microsoft MSBuild 외부에서 Web.Config 변환? (0) | 2023.09.07 |
풀 액세스 거부 저장소가 없거나 도커 로그인이 필요할 수 있습니다. (0) | 2023.09.07 |
모바일 크롬, 스크롤로 이벤트 크기 조정 (0) | 2023.09.07 |