Systemd postgresql script de início

13

Estou no processo de instalar o postgresql em um segundo servidor

Anteriormente, instalei o postgresql e usei o script fornecido

./contrib/start-scripts/linux

Colocado no diretório correto

# cp ./contrib/start-scripts/linux /etc/rc.d/init.d/postgresql92
# chmod 755 /etc/rc.d/init.d/postgresql92

Qual eu poderia executar como esperado com

# service postgresql92 start

No entanto, a nova máquina está usando o Systemd e parece que há uma maneira completamente diferente de fazer isso

Eu não quero hackear isso e estragar algo, então eu queria saber se alguém lá fora poderia me apontar na direção certa de como conseguir o mesmo resultado

    
por Trent 05.08.2015 / 16:52

3 respostas

19

Ao instalar a partir da fonte, você precisará adicionar um arquivo de unidade do systemd que funcione com a instalação de origem. Para o RHEL, o Fedora my unit file parece:

/usr/lib/systemd/system/postgresql.service

[Unit]
Description=PostgreSQL database server
After=network.target

[Service]
Type=forking

User=postgres
Group=postgres

# Where to send early-startup messages from the server (before the logging
# options of postgresql.conf take effect)
# This is normally controlled by the global default set by systemd
# StandardOutput=syslog

# Disable OOM kill on the postmaster
OOMScoreAdjust=-1000
# ... but allow it still to be effective for child processes
# (note that these settings are ignored by Postgres releases before 9.5)
Environment=PG_OOM_ADJUST_FILE=/proc/self/oom_score_adj
Environment=PG_OOM_ADJUST_VALUE=0

# Maximum number of seconds pg_ctl will wait for postgres to start.  Note that
# PGSTARTTIMEOUT should be less than TimeoutSec value.
Environment=PGSTARTTIMEOUT=270

Environment=PGDATA=/usr/local/pgsql/data


ExecStart=/usr/local/pgsql/bin/pg_ctl start -D ${PGDATA} -s -w -t ${PGSTARTTIMEOUT}
ExecStop=/usr/local/pgsql/bin/pg_ctl stop -D ${PGDATA} -s -m fast
ExecReload=/usr/local/pgsql/bin/pg_ctl reload -D ${PGDATA} -s

# Give a reasonable amount of time for the server to start up/shut down.
# Ideally, the timeout for starting PostgreSQL server should be handled more
# nicely by pg_ctl in ExecStart, so keep its timeout smaller than this value.
TimeoutSec=300

[Install]
WantedBy=multi-user.target

Em seguida, ative o serviço na inicialização e inicie o serviço PostgreSQL:

$ sudo systemctl daemon-reload # load the updated service file from disk
$ sudo systemctl enable postgresql
$ sudo systemctl start postgresql
    
por 22.02.2016 / 20:02
5
# systemctl start postgresql.service

Alguns ambientes traduzem service <name> start para systemctl start <name>.service , mas você não precisa depender disso.

    
por 05.08.2015 / 16:59
0

Postado arquivo de unidade systemctl acima me ajude muito, mas para criar o que você precisa, você só tem que colocá-lo em:

/etc/systemd/system/postgresql92.service
systemctl enable postgresql92.service
systemctl start postgresql92.service

Pense em alterar o caminho binay pg_ctl de acordo com a sua instalação e, se quiser executar outra instância, você também deve alterar a porta de escuta padrão:

ExecStart=/usr/local/pgsql/bin/pg_ctl -o "-p 5489"
    
por 12.02.2018 / 12:34