Мне нужно увидеть все журналы postgresql. Я пытаюсь:
$ journalctl -f -u postgresql.service SYSLOG_IDENTIFIER=postgres
-- Logs begin at Ср 2013-03-06 00:57:40 KRAT. --
авг 11 23:41:07 nuzzflonk postgres[2432]: LOG: database system was interrupted; last known up at 2013-08-11 20:12:28 KRAT
авг 11 23:41:07 nuzzflonk postgres[2432]: LOG: database system was not properly shut down; automatic recovery in progress
авг 11 23:41:07 nuzzflonk postgres[2432]: LOG: record with zero length at 5/DACF208
авг 11 23:41:07 nuzzflonk postgres[2432]: LOG: redo is not required
авг 11 23:41:07 nuzzflonk postgres[2432]: LOG: autovacuum launcher started
авг 11 23:41:07 nuzzflonk postgres[2432]: LOG: database system is ready to accept connections
-- Reboot --
авг 19 20:23:22 nuzzflonk postgres[2361]: FATAL: the database system is starting up
авг 19 20:23:22 nuzzflonk postgres[2361]: LOG: database system was shut down at 2013-08-19 20:21:25 KRAT
авг 19 20:23:22 nuzzflonk postgres[2361]: LOG: autovacuum launcher started
авг 19 20:23:22 nuzzflonk postgres[2361]: LOG: database system is ready to accept connections
Но:
$ journalctl -f SYSLOG_IDENTIFIER=postgres
-- Logs begin at Ср 2013-03-06 00:57:40 KRAT. --
авг 24 10:50:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 11:10:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 11:20:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 11:30:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 11:40:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 11:50:08 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 12:00:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 12:30:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 12:40:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
авг 24 12:50:07 nuzzflonk postgres[2361]: LOG: unexpected EOF on client connection with an open transaction
Как совместить два журнала?
UPD: Решено. $ journalctl -f SYSLOG_IDENTIFIER=postgres
показать все журналы.
Чтобы объединить вывод нескольких журналов, вам просто нужно добавить их в свою команду, используя -u
вариант следующим образом:
journalctl -u nginx.service -u mysql.service -f
Не нужно использовать SYSLOG_IDENTIFIER
поскольку в большинстве случаев это будет не то, что вам нужно.