0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Zabbixの豆腐文字修正

Posted at

はじめに

個人の備忘録レベルです。

やること

Zabbixを構築して、公式のクイックスタート通りにCPU使用率のグラフを作ったら豆腐文字になった。
なので、豆腐文字の解消を行う。

現状

下記のような形で日本語部分が豆腐文字になった
chart.png

環境条件

ZabbixサーバのVersion:7.0.17
Ubuntu 24.04.2 LTS
KVMで作成したVM上にZabbixを配置している

手順

フォントの問題なので、ipa-gothicに変えてあげる

sudo apt install -y fonts-ipafont
# zabbixフロントエンドのフォント確認
ls -l /etc/alternatives/zabbix*
lrwxrwxrwx 1 root root 47 Aug 10  2023 /etc/alternatives/zabbix-frontend-font -> /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf

# installしたフォントの確認
ls -la /usr/share/fonts/opentype/ipafont-gothic/
total 12192
drwxr-xr-x 2 root root    4096 Sep 13 14:27 .
drwxr-xr-x 4 root root    4096 Sep 13 14:27 ..
-rw-r--r-- 1 root root 6235712 Apr 12  2011 ipagp.ttf
-rw-r--r-- 1 root root 6235344 Apr 12  2011 ipag.ttf

# リンクの変更
sudo rm /etc/alternatives/zabbix-frontend-font
sudo ln -s /usr/share/fonts/opentype/ipafont-gothic/ipag.ttf /etc/alternatives/zabbix-frontend-font
ls -l /etc/alternatives/zabbix*
lrwxrwxrwx 1 root root 49 Sep 14 10:07 /etc/alternatives/zabbix-frontend-font -> /usr/share/fonts/opentype/ipafont-gothic/ipag.ttf

結果

chart.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?