「Icinga」:修訂間差異
跳至導覽
跳至搜尋
第22行: | 第22行: | ||
cd /usr/share/icinga2-ido-mysql/schema; mysql -u root -p icinga2 < mysql.sql | cd /usr/share/icinga2-ido-mysql/schema; mysql -u root -p icinga2 < mysql.sql | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== 參考資料 == | |||
{{Reflist|2}} | |||
== 外部連結 == | == 外部連結 == |
於 2020年12月6日 (日) 03:59 的修訂
Icinga是一套服務監控軟體。
安裝
如果使用的是Ubuntu的LTS版本,這邊建議用Icinga官方的APT repository安裝[1]:
curl https://packages.icinga.com/icinga.key | sudo apt-key add -; echo -e "deb http://packages.icinga.com/ubuntu icinga-$(lsb_release -c | cut -f 2) main\ndeb-src http://packages.icinga.com/ubuntu icinga-$(lsb_release -c | cut -f 2) main" | sudo tee /etc/apt/source.list.d/icinga.list; sudo apt update; sudo apt install -y icinga2 icinga2-ido-mysql icingaweb2
設定
先在MySQL裡建立icinga2
資料庫:
CREATE DATABASE icinga2;
再來把MySQL的schema裝進去:
cd /usr/share/icinga2-ido-mysql/schema; mysql -u root -p icinga2 < mysql.sql
參考資料
- ↑ Index of /ubuntu. [2020-12-06] (English).
外部連結
- 官方網站 (英文)