Visual Diff Tool

Compare Config Files Side-by-Side Diff

Compare your configuration with ExampleConfig's defaults. See differences highlighted in green (additions) and red (deletions).

PostgreSQL - /etc/systemd/postgresql@.service

Ubuntu 18.04 LTS (Bionic Beaver)

View original →

Default Configuration

Ubuntu 18.04 LTS (Bionic Beaver)
# systemd service template for PostgreSQL clusters. The actual instances will # be called "postgresql@version-cluster", e.g. "postgresql@9.3-main". The # variable %i expands to "version-cluster", %I expands to "version/cluster". # (%I breaks for cluster names containing dashes.) [Unit] Description=PostgreSQL Cluster %i ConditionPathExists=/etc/postgresql/%I/postgresql.conf PartOf=postgresql.service ReloadPropagatedFrom=postgresql.service Before=postgresql.service [Service] Type=forking # -: ignore startup failure (recovery might take arbitrarily long) # the actual pg_ctl timeout is configured in pg_ctl.conf ExecStart=-/usr/bin/pg_ctlcluster --skip-systemctl-redirect %i start # 0 is the same as infinity, but "infinity" needs systemd 229 TimeoutStartSec=0 ExecStop=/usr/bin/pg_ctlcluster --skip-systemctl-redirect -m fast %i stop TimeoutStopSec=1h ExecReload=/usr/bin/pg_ctlcluster --skip-systemctl-redirect %i reload PIDFile=/var/run/postgresql/%i.pid SyslogIdentifier=postgresql@%i # prevent OOM killer from choosing the postmaster (individual backends will # reset the score to 0) OOMScoreAdjust=-900 # restarting automatically will prevent "pg_ctlcluster ... stop" from working, # so we disable it here. Also, the postmaster will restart by itself on most # problems anyway, so it is questionable if one wants to enable external # automatic restarts. #Restart=on-failure # (This should make pg_ctlcluster stop work, but doesn't:) #RestartPreventExitStatus=SIGINT SIGTERM [Install] WantedBy=multi-user.target

Your Configuration

Removed Added

Drop file or click to browse

How to use this tool

  1. 1 Paste your configuration file or drag & drop it into the area above
  2. 2 The diff will appear instantly, showing differences between your config and the default
  3. 3 Green highlights show your additions, red shows what you've removed from the default
  4. 4 Use the toggle button to switch between side-by-side and unified diff views