diff options
author | Sam Chudnick <sam@chudnick.com> | 2022-04-15 21:08:34 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2022-04-15 21:08:34 -0400 |
commit | 85c561f9a32f8f2b9ddf34e7d60ef4b7bf0d3680 (patch) | |
tree | 637c319270201555d66f9bf1cbcc63d893405e69 /monitoring/icinga-master |
inital commit - various scripts
Diffstat (limited to 'monitoring/icinga-master')
-rwxr-xr-x | monitoring/icinga-master | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/monitoring/icinga-master b/monitoring/icinga-master new file mode 100755 index 0000000..ed82bc5 --- /dev/null +++ b/monitoring/icinga-master | |||
@@ -0,0 +1,120 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Configuration for an Iciniga2 master (with icingaweb2, director, and mysql backend) | ||
4 | |||
5 | ido_user="icinga2" | ||
6 | ido_password="changeme" | ||
7 | |||
8 | icingaweb2_user="icingaweb2" | ||
9 | icingaweb2_password="changeme" | ||
10 | |||
11 | director_user="director" | ||
12 | director_password="changeme" | ||
13 | |||
14 | admin_user="admin" | ||
15 | admin_password="changeme" | ||
16 | |||
17 | # Install packages | ||
18 | apt install -y incinga2 icingaweb2 icinga2-ido-mysql icingaweb2-module-director \ | ||
19 | monitoring-plugins monitoring-plugins-contrib | ||
20 | |||
21 | # Secure mysql | ||
22 | mysql_secure_installation | ||
23 | |||
24 | # Create primary monitoring database | ||
25 | mysql -u root -e "CREATE DATABASE icinga2; | ||
26 | GRANT SELECT, INSERT, UPDATE, DELETE, DROP, CREATE VIEW, INDEX, EXECUTE | ||
27 | ON icinga2.* TO '$ido_user'@'localhost' IDENTIFIED BY '$ido_password'; | ||
28 | FLUSH PRIVILEGES; " | ||
29 | mysql -u root icinga2 </usr/share/icinga2-ido-mysql/scheme/mysql.sql | ||
30 | echo "library \"db_ido_mysql\" | ||
31 | object IdoMysqlConnection \"ido-mysql\" { | ||
32 | user = \"$ido_user\", | ||
33 | password = \"$ido_password\", | ||
34 | host = \"localhost\", | ||
35 | databse = \"icinga2\" | ||
36 | }" > /etc/icinga2/features-available/ido-mysql.conf | ||
37 | icinga2 feature enable ido-mysql | ||
38 | |||
39 | # Create icingaweb2 database | ||
40 | mysql -u root -e "CREATE DATABASE icingaweb2; | ||
41 | GRANT ALL ON icingaweb2.* TO '$icingaweb2_user'@'localhost' | ||
42 | IDENTIFIED BY '$icingaweb2_password'; | ||
43 | FLUSH PRIVILEGES;" | ||
44 | mysql icingaweb2 </usr/share/icingaweb2/etc/scheme/mysql.schema.sql | ||
45 | # Create initial admin user to login to icingaweb2 | ||
46 | passhash="$(php -r "echo password_hash(\"$admin_password\", PASSWORD_DEFAULT);")" | ||
47 | mysql -u root -e "USE icingaweb2; | ||
48 | INSERT INTO icingaweb_user (name, active, password_hash) | ||
49 | VALUES (\"$admin_user\", 1, \"$passhash\"); | ||
50 | FLUSH PRIVILEGES; " | ||
51 | |||
52 | # Create director database | ||
53 | mysql -u root -e "CREATE DATABASE director CHARACTER SET 'utf8'; | ||
54 | GRANT ALL on director.* TO '$director_user'@'localhost' | ||
55 | IDENTIFIED BY '$director_password'; | ||
56 | FLUSH PRIVILEGES;" | ||
57 | icingacli module enable director | ||
58 | icingacli director migration run --verbose | ||
59 | |||
60 | # Setup API | ||
61 | icinga2 api setup | ||
62 | |||
63 | # Restart service | ||
64 | systemctl restart icinga2 | ||
65 | |||
66 | |||
67 | # -- Icingaweb2 Configuration -- | ||
68 | |||
69 | # Configure authentication | ||
70 | echo "[icingaweb2] | ||
71 | backend = \"db\" | ||
72 | resource = \"icingaweb2\" | ||
73 | " > /etc/icingaweb2/authentication.ini | ||
74 | |||
75 | # Configure resources | ||
76 | echo "[icinga2] | ||
77 | type = \"db\" | ||
78 | db = \"mysql\" | ||
79 | host \"localhost\" | ||
80 | port = \"\" | ||
81 | dbname = \"icinga2\" | ||
82 | username = \"$icinga2_user\" | ||
83 | password = \"$icinga2_password\" | ||
84 | charset = \"\" | ||
85 | use_ssl = \"0\" | ||
86 | |||
87 | [icingaweb2] | ||
88 | type = \"db\" | ||
89 | db = \"mysql\" | ||
90 | host \"localhost\" | ||
91 | port = \"\" | ||
92 | dbname = \"icingaweb2\" | ||
93 | username = \"$icingaweb2_user\" | ||
94 | password = \"$icingaweb2_password\" | ||
95 | charset = \"\" | ||
96 | use_ssl = \"0\" | ||
97 | |||
98 | [icingaweb2] | ||
99 | type = \"db\" | ||
100 | db = \"mysql\" | ||
101 | host \"localhost\" | ||
102 | port = \"\" | ||
103 | dbname = \"director\" | ||
104 | username = \"$director_user\" | ||
105 | password = \"$director_password\" | ||
106 | charset = \"utf8\" | ||
107 | use_ssl = \"0\" | ||
108 | " > /etc/icingaweb2/resources.ini | ||
109 | |||
110 | # Configure roles | ||
111 | echo "[admins] | ||
112 | users = \"$admin_user\" | ||
113 | permissions = \"*\" " > /etc/icingaweb2/roles.ini | ||
114 | |||
115 | # Configure director | ||
116 | echo "[db] | ||
117 | resource = \"director\" | ||
118 | " > /etc/icingaweb2/modules/director/config.ini | ||
119 | |||
120 | echo "NOW\nBrowse to http://$(hostname)/icingaweb2/ and login as $admin_user" | ||