Postgresqlの起動でつまずいているRedmineを手動で何とか動かす

$ ps aux | grep postgres
postgres 3692 0.0 0.4 397132 17068 ? Ss 17:17 0:00 /usr/pgsql-10/bin/postmaster -D /var/lib/pgsql/10/data/
postgres 3738 0.0 0.0 252060 1916 ? Ss 17:17 0:00 postgres: logger process
postgres 3745 0.0 0.0 397132 2132 ? Ss 17:17 0:00 postgres: checkpointer process
postgres 3746 0.0 0.0 397132 3436 ? Ss 17:17 0:00 postgres: writer process
postgres 3747 0.0 0.1 397132 6336 ? Ss 17:17 0:00 postgres: wal writer process
postgres 3748 0.0 0.0 397464 3100 ? Ss 17:17 0:00 postgres: autovacuum launcher process
postgres 3749 0.0 0.0 252056 2160 ? Ss 17:17 0:00 postgres: stats collector process
postgres 3751 0.0 0.0 397424 2512 ? Ss 17:17 0:00 postgres: bgworker: logical replication launcher
hogeuser 4399 0.0 0.0 112724 976 pts/0 S+ 17:20 0:00 grep --color=auto postgres

$ sudo kill 3692 3738 3745 3746 3747 3748 3749 3751

$ sudo systemctl restart postgresql.service

 起動に失敗して残ったpostgresのプロセスを手動で全て落として、サービスを再起動すると、Redmine動きだします。

 くだらない事書いてすいません。m(_ _)m

 真面目に原因追求します。