web-dev-qa-db-ja.com

14.04から16.04.1へのアップグレード後、Postgresqlサーバーが起動しない

システムを14.04からアップグレードしました。 16.04.1 LTSへのLTS、postgresqlは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 

Systemdスクリプトに間違ったデータが含まれているようです:

# 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

Postgresqlの正しいスクリプトは何ですか?

24

正しいバージョンとクラスター名を指定すると、これはそのまま使用できます。

バージョン9.5を実行しており、クラスターがmainと呼ばれているとしましょう:

開始:systemctl start [email protected]

停止:systemctl stop [email protected]

ステータス:systemctl status [email protected]

起動時に自動起動を有効にします:systemctl enable [email protected]

起動時に自動起動を無効にします:systemctl disable [email protected]

foo@postgres:~$ systemctl status [email protected][email protected] - PostgreSQL Cluster 9.5-main
   Loaded: loaded (/lib/systemd/system/[email protected]; 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/[email protected]
           ├ ─ 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.
9
malte

Systemdは/etc/init.dのスクリプトを使用する必要があります。代わりに、systemdは何らかのテンプレートファイルを使用します。これを修正するには、次の手順を実行します。

  1. 無効なサービススクリプトを削除します。

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

  2. デーモンスクリプトをリロードします。

    # systemctl daemon-reload

  3. Postgresqlサービスを有効にします。

    # systemctl enable postgresql

その後、Sudo systemctl start postgresqlSudo service postgresql start、またはSudo /etc/init.d/postgresql startのいずれかの優先バリアントを使用してpostgresを起動できます。 postgresqlが実際に実行されていることを確認するには、サービスのステータスを確認してください:Sudo systemctl status postgresql。次のようになります。

% 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.
14

Postges9を削除した後も同じ問題が発生し、ubuntu16に10をインストールしました。最初に、/ lib/systemd/system/postgresql.serviceファイルを次の内容で編集しました。

[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

そして、systemctl restart/stop/startを使用してpostgresqlサービスを制御できます。ただし、何らかの理由で、上記のファイルが上書きされ(おそらくシステム更新後)、systemctlコマンドを実行してpostgresqlサーバーを起動および停止できなくなりました。少し読んだ後、上記のファイルを編集することになっていないことに気付きました。代わりに、systemctl edit fooを使用してデフォルトを上書きする必要があります。次のリンクで提案されている解決策に従った後、私のシステムはpostgresqlで適切に動作しているようです。

systemdサービスをオーバーライドまたは構成するにはどうすればよいですか

1
Kemin Zhou