MrGeneration

MrGeneration

Joined 2 years ago

MrGeneration
Last active 4 months ago

This gist provides contextual copy paste options for Using Grafana with Zammad. Video context to this: https://youtu.be/CdGdKE4hjUU

0 0 6
1 ##################### Grafana Configuration Example #####################
2 #
3 # Everything has defaults so you only need to uncomment things you want to
4 # change
5
6 # possible values : production, development
7 ;app_mode = production
8
9 # instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty
10 ;instance_name = FQDN
MrGeneration
Last active 4 months ago

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

0 0 8
1 # The following action is NOT reversible but is significantly faster.
2 # Use at own descression - replace oldversion with your old version and newversion with your new version
3
4 pg_upgradecluster --method=upgrade --link <oldversion> main /var/lib/postgresql/<newversion>/main/
MrGeneration
Last active 2 months ago

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.

0 0 8
1 # Side note: Elasticsearch has an option to verify SSL as well. This might be an edge case.
2 # By default these certificates are self-signed and thus you may not want to run this at all
3 Setting.set('es_ssl_verify', true)