MrGeneration / Install and Configure Grafana with Zammad
0 likes
0 forks
6 files
Last active
This gist provides contextual copy paste options for Using Grafana with Zammad. Video context to this: https://youtu.be/CdGdKE4hjUU
1 | # As documented on original Grafana documentation: |
2 | # https://grafana.com/docs/grafana/latest/setup-grafana/installation/debian/ |
3 | |
4 | # Add Debian repository |
5 | mkdir -p /etc/apt/keyrings/ |
6 | curl -fsSL https://apt.grafana.com/gpg.key | gpg --dearmor | tee /etc/apt/keyrings/grafana.gpg > /dev/null |
7 | echo "deb [signed-by=/etc/apt/keyrings/grafana.gpg] https://apt.grafana.com stable main" | tee -a /etc/apt/sources.list.d/grafana.list |
8 | |
9 | # Install Grafana Enterprise (as suggested) |
10 | apt install grafana-enterprise |
MrGeneration / Debian / Ubuntu Upgrade
0 likes
0 forks
8 files
Last active
This gist provides contextual copy paste options for Distribution upgrades with installed Zammad and PostgreSQL for Debian (10, 11, 12) and Ubuntu (18, 20, 22). Video context to this: https://youtu.be/IXp4VWU27wo
1 | systemctl disable zammad --now |
2 | apt-mark hold zammad |
3 | apt update |
4 | apt upgrade |
5 | |
6 | # Continue with step 2 or 3 depending on your current state |
MrGeneration / Zammad 6.2: Enforce SSL-Verification
0 likes
0 forks
4 files
Last active
With Zammad 6.2 existing configurations for Email channels and i-doit by default have ssl verification disabled. This code snippet activates SSL verification. This change ONLY affects existing, update installations.
1 | # If you've configured "SSL-Verification: true" on previous Zammad-Versions, this setting is going to be a problem. |
2 | # Below turns off SSL verification for all LDAP-Sources. You then can login again and have the time needed to fix the configuration. |
3 | |
4 | LdapSource.all.each do |l| |
5 | l.preferences.merge!("ssl_verify"=>false) |
6 | l.save |
7 | end; |
Newer
Older