Dopo l'aggiornamento da 14.04 a 16.04.1 il server Postgresql non si avvia


24

Ho appena aggiornato il mio sistema dal 14.04. Da LTS a 16.04.1 LTS, postgresql non si avvia su systemd:

/etc/init.d/postgresql start                                                                                                                                                                              
[ ok ] Starting postgresql (via systemctl): postgresql.service

# /etc/init.d/postgresql status                                                                                                                                                                             
● postgresql.service - PostgreSQL RDBMS
  Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor     preset: enabled)
  Active: active (exited) since Вт 2016-08-09 13:40:51 MSK; 3min 23s ago
  Process: 23142 ExecStart=/bin/true (code=exited, status=0/SUCCESS)
  Main PID: 23142 (code=exited, status=0/SUCCESS)Seems that 

Sembra che lo script di systemd contenga dati errati:

# cat /lib/systemd/system/postgresql.service                                                                                                                                                                
# systemd service for managing all PostgreSQL clusters on the system. This
# service is actually a systemd target, but we are using a service since
# targets cannot be reloaded.

[Unit]
Description=PostgreSQL RDBMS

[Service]
Type=oneshot
ExecStart=/bin/true
ExecReload=/bin/true
RemainAfterExit=on

[Install]
WantedBy=multi-user.target

Quale dovrebbe essere lo script corretto per postgresql?

Risposte:


9

Questo dovrebbe funzionare immediatamente se si forniscono la versione e il nome del cluster corretti.

Diciamo che stai eseguendo la versione 9.5e il cluster si chiama main:

Inizio: systemctl start postgresql@9.5-main

Fermare: systemctl stop postgresql@9.5-main

Stato: systemctl status postgresql@9.5-main

Abilita avvio automatico all'avvio: systemctl enable postgresql@9.5-main

Disabilita l'avvio automatico all'avvio: systemctl disable postgresql@9.5-main

foo@postgres:~$ systemctl status postgresql@9.5-main
●  postgresql@9.5-main.service - PostgreSQL Cluster 9.5-main
   Loaded: loaded (/lib/systemd/system/postgresql@.service; disabled; vendor preset: enabled)
   Active: active (running) since Fri 2017-03-31 17:44:46 CEST; 59s ago
   Main PID: 4546 (postgres)
   CGroup: /system.slice/system-postgresql.slice/postgresql@9.5-main.service
           ├ ─ 4546 /usr/lib/postgresql/9.5/bin/postgres -D /var/lib/postgresql/9.5/main -c config_file=/etc/postgresql/9.5/main/postgresql.conf
           ├ ─ 4548 postgres: checkpointer process
           ├ ─ 4549 postgres: writer process
           ├ ─ 4550 postgres: wal writer process
           ├ ─ 4551 postgres: autovacuum launcher process
           └ ─ 4552 postgres: stats collector process

Mar 31 17:44:44 postgres postgres[4546]: [1-2] 2017-03-31 17:44:44 CEST [4546] @ HINT:  Future log output will go to log destination "syslog".
Mar 31 17:44:44 postgres postgres[4547]: [2-1] 2017-03-31 17:44:44 CEST [4547] @ LOG:  database system was shut down at 2017-03-31 17:44:43 CEST
Mar 31 17:44:44 postgres postgres[4547]: [3-1] 2017-03-31 17:44:44 CEST [4547] @ LOG:  MultiXact member wraparound protections are now enabled
Mar 31 17:44:44 postgres postgres[4546]: [2-1] 2017-03-31 17:44:44 CEST [4546] @ LOG:  database system is ready to accept connections
Mar 31 17:44:44 postgres postgres[4551]: [2-1] 2017-03-31 17:44:44 CEST [4551] @ LOG:  autovacuum launcher started
Mar 31 17:44:45 postgres postgres[4553]: [3-1] 2017-03-31 17:44:45 CEST [4553] [unknown]@[unknown] LOG:  incomplete startup packet
Mar 31 17:44:46 postgres systemd[1]: Started PostgreSQL Cluster 9.5-main.
Mar 31 17:44:47 postgres systemd[1]: Reloading PostgreSQL Cluster 9.5-main.
Mar 31 17:44:47 postgres postgres[4546]: [3-1] 2017-03-31 17:44:47 CEST [4546] @ LOG:  received SIGHUP, reloading configuration files
Mar 31 17:44:47 systemd[1]: Reloaded PostgreSQL Cluster 9.5-main.

Può dimostrare che questo è un lavoro. Come posso impostare systemd per l'avvio automatico?
Artur Eshenbrener

1
systemctl enable postgresql@9.5-mainé tutto quello di cui hai bisogno.
malte,

1
Ho appena aggiornato postgresql dalla 9.6 alla 10.0 e risolto nuovamente questo problema. Ho provato la tua soluzione e puoi dimostrarlo: funziona.
Artur Eshenbrener,

Estratto dalla risposta di Kemin di seguito: puoi usare, ad esempio, systemctl edit postgresql@9.6-mainper creare un file di sostituzione con direttive systemd come: [Service] Nice = 15 IOSchedulingClass = 2 IOSchedulingPriority = 7
GreenReaper

14

Systemd dovrebbe usare lo script da /etc/init.d. Invece, systemd utilizza un qualche tipo di file modello. Per risolvere il problema, segui questi passaggi:

  1. Rimuovi script di servizio non valido:

    # rm /lib/systemd/system/postgresql.service

  2. Ricarica script daemon:

    # systemctl daemon-reload

  3. Abilita servizio postgresql:

    # systemctl enable postgresql

Dopo di che, si sarebbe in grado di avviare postgres con eventuali varianti preferite: sudo systemctl start postgresql, sudo service postgresql starto sudo /etc/init.d/postgresql start. Per verificare che PostgreSQL effettivamente eseguito, si prega di verificare lo stato di servizio: sudo systemctl status postgresql. Sembra che:

% sudo systemctl status postgresql                                                                                                                                                                          
● postgresql.service - LSB: PostgreSQL RDBMS server
   Loaded: loaded (/etc/init.d/postgresql; bad; vendor preset: enabled)
   Active: active (running) since Пт 2016-08-12 10:13:43 MSK; 1h 37min ago
     Docs: man:systemd-sysv-generator(8)
   CGroup: /system.slice/postgresql.service
           ├─4086 /usr/lib/postgresql/9.5/bin/postgres -D     /var/lib/postgresql/9.5/main -c  config_file=/etc/postgresql/9.5/main/postgresql.conf
           ├─4099 postgres: checkpointer process                                                                                              
           ├─4100 postgres: writer process                                                                                                    
           ├─4101 postgres: wal writer process                                                                                                
           ├─4102 postgres: autovacuum launcher process                                                                                       
           └─4103 postgres: stats collector process                                                                                           

авг 12 10:13:40 ubuntu-precise systemd[1]: Starting LSB: PostgreSQL RDBMS server...
авг 12 10:13:40 ubuntu-precise postgresql[4009]:  * Starting PostgreSQL 9.5 database server
авг 12 10:13:43 ubuntu-precise postgresql[4009]:    ...done.
авг 12 10:13:43 ubuntu-precise systemd[1]: Started LSB: PostgreSQL RDBMS server.

1
Deve essere sbagliato. Systemd fa il lavoro. Sta iniziando il mio cluster 9.3 bene; semplicemente non avvierà il mio cluster 9.5. Non è uno script di servizio non valido , è uno script di destinazione che hanno chiamato un servizio per renderlo ricaricabile. Nemmeno i brutti hack sembrano essere il modo giusto per farlo, ma dovrebbero davvero systemctl _action_ postgresql@_version_funzionare
Auspex

Non so se questo è un brutto hack (probabilmente lo è), ma ho avuto lo stesso problema con Postfix e questa risposta sembra risolvere il mio problema.
decibita l'

Al thesystemctl abilitare postgresql ho ricevuto il seguente errore: postgresql.service non è un servizio nativo, reindirizzamento a systemd-sysv-install Executing / lib / systemd / systemd-sysv-install abilita postgresql insserv: fopen (.depend.stop): Autorizzazione negato insserv: fopen (.depend.stop): autorizzazione negata. Apparentemente questo non funziona con la mia configurazione.
Kemin Zhou,

1

Ho avuto lo stesso problema dopo aver rimosso postges9 e installato 10 sul mio ubuntu16. Inizialmente ho modificato il file /lib/systemd/system/postgresql.service con il seguente contenuto:

[Unit]
Description=PostgreSQL RDBMS

[Service]
Type=notify
User=postgres
ExecStart=/usr/lib/postgresql/10/bin/postgres -D /analysis2/postgresql/data
ExecReload=/bin/kill -HUP $MAINPID
KillMode=mixed
KillSignal=SIGINT
TimeoutSec=0

[Install]
WantedBy=multi-user.target

E posso usare systemctl restart / stop / start per controllare il servizio postgresql. Tuttavia, per qualche motivo, il file sopra è stato sovrascritto (forse dopo l'aggiornamento del sistema) e non ho potuto eseguire il comando systemctl per avviare e arrestare più il server postgresql. Dopo alcune letture, mi sono reso conto che non dovresti modificare il file sopra. Invece dovresti usare systemctl edit foo per sovrascrivere i valori predefiniti. Dopo aver seguito la soluzione suggerita dal seguente link, il mio sistema sembra funzionare correttamente con postgresql.

Come posso sostituire o configurare i servizi di systemd?


-2

Non è la soluzione più bella, ma questo risolve il problema senza doversi tuffare in nulla. Aggiungi questo a cron:

@reboot sleep 5; systemctl start postgresql
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.