3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Zabbix 3.0でマクロのタイムゾーンがUTCから変更できなくてハマった

Last updated at Posted at 2016-10-09

Zabbix 3.0で、WebUI等では時刻がJSTで表示できているにも関わらず、マクロ(DATE,TIME)で引かれる値がUTCとなってしまいハマったので、解決法を記録しておきます。

前提

  • PHP(7)のタイムゾーンは以下のコマンドで変更済み
    sed -i -e 's/mod_php5.c/mod_php7.c/' /etc/apache2/conf-available/zabbix.conf
# php_value date.timezone Europe/Riga:php_value date.timezone Asia/Tokyo:' \
/etc/apache2/conf-available/zabbix.conf```
* サーバのタイムゾーンは以下のコマンドで変更済み  
```echo 'Asia/Tokyo' > /etc/timezone```

## 解決法
以下のコマンドでローカルタイムを変更すれば治りました。
```cp /usr/share/zoneinfo/Japan /etc/localtime```

このあたり全然詳しくないので、もしかしたら変なことやってるかもしれません。
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?