1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
|
'\" t
.TH "JOURNALCTL" "1" "" "systemd 257.6" "journalctl"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
journalctl \- Print log entries from the systemd journal
.SH "SYNOPSIS"
.HP \w'\fBjournalctl\fR\ 'u
\fBjournalctl\fR [OPTIONS...] [MATCHES...]
.SH "DESCRIPTION"
.PP
\fBjournalctl\fR
is used to print the log entries stored in the journal by
\fBsystemd-journald.service\fR(8)
and
\fBsystemd-journal-remote.service\fR(8)\&.
.PP
If called without parameters, it will show the contents of the journal accessible to the calling user, starting with the oldest entry collected\&.
.PP
If one or more match arguments are passed, the output is filtered accordingly\&. A match is in the format
"FIELD=VALUE", e\&.g\&.
"_SYSTEMD_UNIT=httpd\&.service", referring to the components of a structured journal entry\&. See
\fBsystemd.journal-fields\fR(7)
for a list of well\-known fields\&. If multiple matches are specified matching different fields, the log entries are filtered by both, i\&.e\&. the resulting output will show only entries matching all the specified matches of this kind\&. If two matches apply to the same field, then they are automatically matched as alternatives, i\&.e\&. the resulting output will show entries matching any of the specified matches for the same field\&. Finally, the character
"+"
may appear as a separate word between other terms on the command line\&. This causes all matches before and after to be combined in a disjunction (i\&.e\&. logical OR)\&.
.PP
It is also possible to filter the entries by specifying an absolute file path as an argument\&. The file path may be a file or a symbolic link and the file must exist at the time of the query\&. If a file path refers to an executable binary, an
"_EXE="
match for the canonicalized binary path is added to the query\&. If a file path refers to an executable script, a
"_COMM="
match for the script name is added to the query\&. If a file path refers to a device node,
"_KERNEL_DEVICE="
matches for the kernel name of the device and for each of its ancestor devices is added to the query\&. Symbolic links are dereferenced, kernel names are synthesized, and parent devices are identified from the environment at the time of the query\&. In general, a device node is the best proxy for an actual device, as log entries do not usually contain fields that identify an actual device\&. For the resulting log entries to be correct for the actual device, the relevant parts of the environment at the time the entry was logged, in particular the actual device corresponding to the device node, must have been the same as those at the time of the query\&. Because device nodes generally change their corresponding devices across reboots, specifying a device node path causes the resulting entries to be restricted to those from the current boot\&.
.PP
Additional constraints may be added using options
\fB\-\-boot\fR,
\fB\-\-unit=\fR, etc\&., to further limit what entries will be shown (logical AND)\&.
.PP
Output is interleaved from all accessible journal files, whether they are rotated or currently being written, and regardless of whether they belong to the system itself or are accessible user journals\&. The
\fB\-\-header\fR
option can be used to identify which files
\fIare\fR
being shown\&.
.PP
The set of journal files which will be used can be modified using the
\fB\-\-user\fR,
\fB\-\-system\fR,
\fB\-\-directory=\fR, and
\fB\-\-file=\fR
options, see below\&.
.PP
All users are granted access to their private per\-user journals\&. However, by default, only root and users who are members of a few special groups are granted access to the system journal and the journals of other users\&. Members of the groups
"systemd\-journal",
"adm", and
"wheel"
can read all journal files\&. Note that the two latter groups traditionally have additional privileges specified by the distribution\&. Members of the
"wheel"
group can often perform administrative tasks\&.
.PP
The output is paged through
\fBless\fR
by default, and long lines are "truncated" to screen width\&. The hidden part can be viewed by using the left\-arrow and right\-arrow keys\&. Paging can be disabled; see the
\fB\-\-no\-pager\fR
option and the "Environment" section below\&.
.PP
When outputting to a tty, lines are colored according to priority: lines of level ERROR and higher are colored red; lines of level WARNING are colored yellow; lines of level NOTICE are highlighted; lines of level INFO are displayed normally; lines of level DEBUG are colored grey\&.
.PP
To write entries
\fIto\fR
the journal, a few methods may be used\&. In general, output from systemd units is automatically connected to the journal, see
\fBsystemd-journald.service\fR(8)\&. In addition,
\fBsystemd-cat\fR(1)
may be used to send messages to the journal directly\&.
.SH "SOURCE OPTIONS"
.PP
The following options control where to read journal records from:
.PP
\fB\-\-system\fR, \fB\-\-user\fR
.RS 4
Show messages from system services and the kernel (with
\fB\-\-system\fR)\&. Show messages from service of current user (with
\fB\-\-user\fR)\&. If neither is specified, show all messages that the user can see\&.
.sp
The
\fB\-\-user\fR
option affects how
\fB\-\-unit=\fR
arguments are treated\&. See
\fB\-\-unit=\fR\&.
.sp
Note that
\fB\-\-user\fR
only works if persistent logging is enabled, via the
\fIStorage=\fR
setting in
\fBjournald.conf\fR(5)\&.
.sp
Added in version 205\&.
.RE
.PP
\fB\-M\fR, \fB\-\-machine=\fR
.RS 4
Show messages from a running, local container\&. Specify a container name to connect to\&.
.sp
Added in version 209\&.
.RE
.PP
\fB\-m\fR, \fB\-\-merge\fR
.RS 4
Show entries interleaved from all available journals, including remote ones\&.
.sp
Added in version 190\&.
.RE
.PP
\fB\-D \fR\fB\fIDIR\fR\fR, \fB\-\-directory=\fR\fB\fIDIR\fR\fR
.RS 4
Takes a directory path as argument\&. If specified, journalctl will operate on the specified journal directory
\fIDIR\fR
instead of the default runtime and system journal paths\&.
.sp
Added in version 187\&.
.RE
.PP
\fB\-i \fR\fB\fIGLOB\fR\fR, \fB\-\-file=\fR\fB\fIGLOB\fR\fR
.RS 4
Takes a file glob as an argument\&. If specified, journalctl will operate on the specified journal files matching
\fIGLOB\fR
instead of the default runtime and system journal paths\&. May be specified multiple times, in which case files will be suitably interleaved\&.
.sp
Added in version 205\&.
.RE
.PP
\fB\-\-root=\fR\fB\fIROOT\fR\fR
.RS 4
Takes a directory path as an argument\&. If specified,
\fBjournalctl\fR
will operate on journal directories and catalog file hierarchy underneath the specified directory instead of the root directory (e\&.g\&.
\fB\-\-update\-catalog\fR
will create
\fIROOT\fR/var/lib/systemd/catalog/database, and journal files under
\fIROOT\fR/run/journal/
or
\fIROOT\fR/var/log/journal/
will be displayed)\&.
.sp
Added in version 201\&.
.RE
.PP
\fB\-\-image=\fR\fB\fIIMAGE\fR\fR
.RS 4
Takes a path to a disk image file or block device node\&. If specified,
\fBjournalctl\fR
will operate on the file system in the indicated disk image\&. This option is similar to
\fB\-\-root=\fR, but operates on file systems stored in disk images or block devices, thus providing an easy way to extract log data from disk images\&. The disk image should either contain just a file system or a set of file systems within a GPT partition table, following the
\m[blue]\fBDiscoverable Partitions Specification\fR\m[]\&\s-2\u[1]\d\s+2\&. For further information on supported disk images, see
\fBsystemd-nspawn\fR(1)\*(Aqs switch of the same name\&.
.sp
Added in version 247\&.
.RE
.PP
\fB\-\-image\-policy=\fR\fB\fIpolicy\fR\fR
.RS 4
Takes an image policy string as argument, as per
\fBsystemd.image-policy\fR(7)\&. The policy is enforced when operating on the disk image specified via
\fB\-\-image=\fR, see above\&. If not specified, defaults to the
"*"
policy, i\&.e\&. all recognized file systems in the image are used\&.
.RE
.PP
\fB\-\-namespace=\fR\fB\fINAMESPACE\fR\fR
.RS 4
Takes a journal namespace identifier string as argument\&. If not specified, the data collected by the default namespace is shown\&. If specified, shows the log data of the specified namespace instead\&. If the namespace is specified as
"*"
data from all namespaces is shown, interleaved\&. If the namespace identifier is prefixed with
"+"
data from the specified namespace and the default namespace is shown, interleaved, but no other\&. For details about journal namespaces see
\fBsystemd-journald.service\fR(8)\&.
.sp
Added in version 245\&.
.RE
.SH "FILTERING OPTIONS"
.PP
The following options control how to filter journal records:
.PP
\fB\-S\fR, \fB\-\-since=\fR, \fB\-U\fR, \fB\-\-until=\fR
.RS 4
Start showing entries on or newer than the specified date, or on or older than the specified date, respectively\&. Date specifications should be of the format
"2012\-10\-30 18:17:16"\&. If the time part is omitted,
"00:00:00"
is assumed\&. If only the seconds component is omitted,
":00"
is assumed\&. If the date component is omitted, the current day is assumed\&. Alternatively the strings
"yesterday",
"today",
"tomorrow"
are understood, which refer to 00:00:00 of the day before the current day, the current day, or the day after the current day, respectively\&.
"now"
refers to the current time\&. Finally, relative times may be specified, prefixed with
"\-"
or
"+", referring to times before or after the current time, respectively\&. For complete time and date specification, see
\fBsystemd.time\fR(7)\&. Note that
\fB\-\-output=short\-full\fR
prints timestamps that follow precisely this format\&.
.sp
Added in version 195\&.
.RE
.PP
\fB\-c\fR, \fB\-\-cursor=\fR
.RS 4
Start showing entries from the location in the journal specified by the passed cursor\&.
.sp
Added in version 193\&.
.RE
.PP
\fB\-\-after\-cursor=\fR
.RS 4
Start showing entries from the location in the journal
\fIafter\fR
the location specified by the passed cursor\&. The cursor is shown when the
\fB\-\-show\-cursor\fR
option is used\&.
.sp
Added in version 206\&.
.RE
.PP
\fB\-\-cursor\-file=\fR\fB\fIFILE\fR\fR
.RS 4
If
\fIFILE\fR
exists and contains a cursor, start showing entries
\fIafter\fR
this location\&. Otherwise, show entries according to the other given options\&. At the end, write the cursor of the last entry to
\fIFILE\fR\&. Use this option to continually read the journal by sequentially calling
\fBjournalctl\fR\&.
.sp
Added in version 242\&.
.RE
.PP
\fB\-b \fR\fB[[\fIID\fR][\fI\(+-offset\fR]|\fBall\fR]\fR, \fB\-\-boot\fR\fB[=[\fIID\fR][\fI\(+-offset\fR]|\fBall\fR]\fR
.RS 4
Show messages from a specific boot\&. This will add a match for
"_BOOT_ID="\&.
.sp
The argument may be empty, in which case logs for the current boot will be shown\&.
.sp
If the boot ID is omitted, a positive
\fIoffset\fR
will look up the boots starting from the beginning of the journal, and an equal\-or\-less\-than zero
\fIoffset\fR
will look up boots starting from the end of the journal\&. Thus,
\fB1\fR
means the first boot found in the journal in chronological order,
\fB2\fR
the second and so on; while
\fB\-0\fR
is the last boot,
\fB\-1\fR
the boot before last, and so on\&. An empty
\fIoffset\fR
is equivalent to specifying
\fB\-0\fR, except when the current boot is not the last boot (e\&.g\&. because
\fB\-\-directory=\fR
was specified to look at logs from a different machine)\&.
.sp
If the 32\-character
\fIID\fR
is specified, it may optionally be followed by
\fIoffset\fR
which identifies the boot relative to the one given by boot
\fIID\fR\&. Negative values mean earlier boots and positive values mean later boots\&. If
\fIoffset\fR
is not specified, a value of zero is assumed, and the logs for the boot given by
\fIID\fR
are shown\&.
.sp
The special argument
\fBall\fR
can be used to negate the effect of an earlier use of
\fB\-b\fR\&.
.sp
Added in version 186\&.
.RE
.PP
\fB\-u\fR, \fB\-\-unit=\fR\fB\fIUNIT\fR\fR\fB|\fR\fB\fIPATTERN\fR\fR
.RS 4
Show messages for the specified systemd unit
\fIUNIT\fR
(such as a service unit), or for any of the units matched by
\fIPATTERN\fR\&. If a pattern is specified, a list of unit names found in the journal is compared with the specified pattern and all that match are used\&. For each unit name, a match is added for messages from the unit ("_SYSTEMD_UNIT=\fIUNIT\fR"), along with additional matches for messages from systemd and messages about coredumps for the specified unit\&. A match is also added for
"_SYSTEMD_SLICE=\fIUNIT\fR", such that if the provided
\fIUNIT\fR
is a
\fBsystemd.slice\fR(5)
unit, all logs of children of the slice will be shown\&.
.sp
With
\fB\-\-user\fR, all
\fB\-\-unit=\fR
arguments will be converted to match user messages as if specified with
\fB\-\-user\-unit=\fR\&.
.sp
This parameter can be specified multiple times\&.
.sp
Added in version 195\&.
.RE
.PP
\fB\-\-user\-unit=\fR
.RS 4
Show messages for the specified user session unit\&. This will add a match for messages from the unit ("_SYSTEMD_USER_UNIT="
and
"_UID=") and additional matches for messages from session systemd and messages about coredumps for the specified unit\&. A match is also added for
"_SYSTEMD_USER_SLICE=\fIUNIT\fR", such that if the provided
\fIUNIT\fR
is a
\fBsystemd.slice\fR(5)
unit, all logs of children of the unit will be shown\&.
.sp
This parameter can be specified multiple times\&.
.sp
Added in version 198\&.
.RE
.PP
\fB\-I\fR, \fB\-\-invocation=\fR\fB\fIID\fR\fR\fB[\fI\(+-offset\fR]\fR\fB|\fR\fB\fIoffset\fR\fR
.RS 4
Show messages from a specific invocation of unit\&. This will add a match for
"_SYSTEMD_INVOCATION_ID=",
"OBJECT_SYSTEMD_INVOCATION_ID=",
"INVOCATION_ID=",
"USER_INVOCATION_ID="\&.
.sp
A positive
\fIoffset\fR
will look up the invocations of a systemd unit from the beginning of the journal, and zero or a negative offset will look up invocations starting from the end of the journal\&. Thus,
\fB1\fR
means the first invocation found in the journal in chronological order,
\fB2\fR
the second and so on; while
\fB0\fR
is the latest invocation,
\fB\-1\fR
the invocation before the latest, and so on\&.
.sp
If the 32\-character
\fIID\fR
is specified, it may optionally be followed by
\fI\(+-offset\fR
which identifies the invocation relative to the one given by invocation
\fIID\fR\&. Negative values mean earlier invocations and positive values mean later invocations\&. If
\fI\(+-offset\fR
is not specified, a value of zero is assumed, and the logs for the invocation given by
\fIID\fR
will be shown\&.
.sp
\fB\-I\fR
is equivalent to
\fB\-\-invocation=0\fR, and logs for the latest invocation will be shown\&.
.sp
When an offset is specified, a unit name must be specified with
\fB\-u/\-\-unit=\fR
or
\fB\-\-user\-unit=\fR
option\&.
.sp
When specified with
\fB\-b/\-\-boot=\fR, then invocations are searched within the specified boot\&.
.sp
Added in version 257\&.
.RE
.PP
\fB\-t\fR, \fB\-\-identifier=\fR\fB\fISYSLOG_IDENTIFIER\fR\fR
.RS 4
Show messages for the specified syslog identifier
\fISYSLOG_IDENTIFIER\fR\&.
.sp
This parameter can be specified multiple times\&.
.sp
Added in version 217\&.
.RE
.PP
\fB\-T\fR, \fB\-\-exclude\-identifier=\fR\fB\fISYSLOG_IDENTIFIER\fR\fR
.RS 4
Exclude messages for the specified syslog identifier
\fISYSLOG_IDENTIFIER\fR\&.
.sp
This parameter can be specified multiple times\&.
.sp
Added in version 256\&.
.RE
.PP
\fB\-p\fR, \fB\-\-priority=\fR
.RS 4
Filter output by message priorities or priority ranges\&. Takes either a single numeric or textual log level (i\&.e\&. between 0/"emerg"
and 7/"debug"), or a range of numeric/text log levels in the form FROM\&.\&.TO\&. The log levels are the usual syslog log levels as documented in
\fBsyslog\fR(3), i\&.e\&.
"emerg"\ \&(0),
"alert"\ \&(1),
"crit"\ \&(2),
"err"\ \&(3),
"warning"\ \&(4),
"notice"\ \&(5),
"info"\ \&(6),
"debug"\ \&(7)\&. If a single log level is specified, all messages with this log level or a lower (hence more important) log level are shown\&. If a range is specified, all messages within the range are shown, including both the start and the end value of the range\&. This will add
"PRIORITY="
matches for the specified priorities\&.
.sp
Added in version 188\&.
.RE
.PP
\fB\-\-facility=\fR
.RS 4
Filter output by syslog facility\&. Takes a comma\-separated list of numbers or facility names\&. The names are the usual syslog facilities as documented in
\fBsyslog\fR(3)\&.
\fB\-\-facility=help\fR
may be used to display a list of known facility names and exit\&.
.sp
Added in version 245\&.
.RE
.PP
\fB\-g\fR, \fB\-\-grep=\fR
.RS 4
Filter output to entries where the
\fIMESSAGE=\fR
field matches the specified regular expression\&. PERL\-compatible regular expressions are used, see
\fBpcre2pattern\fR(3)
for a detailed description of the syntax\&.
.sp
If the pattern is all lowercase, matching is case insensitive\&. Otherwise, matching is case sensitive\&. This can be overridden with the
\fB\-\-case\-sensitive\fR
option, see below\&.
.sp
When used with
\fB\-\-lines=\fR
(not prefixed with
"+"),
\fB\-\-reverse\fR
is implied\&.
.sp
Added in version 237\&.
.RE
.PP
\fB\-\-case\-sensitive\fR\fB[=BOOLEAN]\fR
.RS 4
Make pattern matching case sensitive or case insensitive\&.
.sp
Added in version 237\&.
.RE
.PP
\fB\-k\fR, \fB\-\-dmesg\fR
.RS 4
Show only kernel messages\&. This implies
\fB\-b\fR
and adds the match
"_TRANSPORT=kernel"\&.
.sp
Added in version 205\&.
.RE
.SH "OUTPUT OPTIONS"
.PP
The following options control how journal records are printed:
.PP
\fB\-o\fR, \fB\-\-output=\fR
.RS 4
Controls the formatting of the journal entries that are shown\&. Takes one of the following options:
.PP
\fBshort\fR
.RS 4
is the default and generates an output that is mostly identical to the formatting of classic syslog files, showing one line per journal entry\&.
.sp
Added in version 206\&.
.RE
.PP
\fBshort\-full\fR
.RS 4
is very similar, but shows timestamps in the format the
\fB\-\-since=\fR
and
\fB\-\-until=\fR
options accept\&. Unlike the timestamp information shown in
\fBshort\fR
output mode this mode includes weekday, year and timezone information in the output, and is locale\-independent\&.
.sp
Added in version 232\&.
.RE
.PP
\fBshort\-iso\fR
.RS 4
is very similar, but shows timestamps in the
\m[blue]\fBRFC 3339\fR\m[]\&\s-2\u[2]\d\s+2
profile of ISO 8601\&.
.sp
Added in version 206\&.
.RE
.PP
\fBshort\-iso\-precise\fR
.RS 4
as for
\fBshort\-iso\fR
but includes full microsecond precision\&.
.sp
Added in version 234\&.
.RE
.PP
\fBshort\-precise\fR
.RS 4
is very similar, but shows classic syslog timestamps with full microsecond precision\&.
.sp
Added in version 207\&.
.RE
.PP
\fBshort\-monotonic\fR
.RS 4
is very similar, but shows monotonic timestamps instead of wallclock timestamps\&.
.sp
Added in version 206\&.
.RE
.PP
\fBshort\-delta\fR
.RS 4
as for
\fBshort\-monotonic\fR
but includes the time difference to the previous entry\&. Maybe unreliable time differences are marked by a
"*"\&.
.sp
Added in version 252\&.
.RE
.PP
\fBshort\-unix\fR
.RS 4
is very similar, but shows seconds passed since January 1st 1970 UTC instead of wallclock timestamps ("UNIX time")\&. The time is shown with microsecond accuracy\&.
.sp
Added in version 230\&.
.RE
.PP
\fBverbose\fR
.RS 4
shows the full\-structured entry items with all fields\&.
.sp
Added in version 206\&.
.RE
.PP
\fBexport\fR
.RS 4
serializes the journal into a binary (but mostly text\-based) stream suitable for backups and network transfer (see
\m[blue]\fBJournal Export Format\fR\m[]\&\s-2\u[3]\d\s+2
for more information)\&. To import the binary stream back into native journald format use
\fBsystemd-journal-remote\fR(8)\&.
.sp
Added in version 206\&.
.RE
.PP
\fBjson\fR
.RS 4
formats entries as JSON objects, separated by newline characters (see
\m[blue]\fBJournal JSON Format\fR\m[]\&\s-2\u[4]\d\s+2
for more information)\&. Field values are generally encoded as JSON strings, with three exceptions:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 1." 4.2
.\}
Fields larger than 4096 bytes are encoded as
\fBnull\fR
values\&. (This may be turned off by passing
\fB\-\-all\fR, but be aware that this may allocate overly long JSON objects\&.)
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 2." 4.2
.\}
Journal entries permit non\-unique fields within the same log entry\&. JSON does not allow non\-unique fields within objects\&. Due to this, if a non\-unique field is encountered a JSON array is used as field value, listing all field values as elements\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP " 3." 4.2
.\}
Fields containing non\-printable or non\-UTF8 bytes are encoded as arrays containing the raw bytes individually formatted as unsigned numbers\&.
.RE
.sp
Note that this encoding is reversible (with the exception of the size limit)\&.
.sp
Added in version 206\&.
.RE
.PP
\fBjson\-pretty\fR
.RS 4
formats entries as JSON data structures, but formats them in multiple lines in order to make them more readable by humans\&.
.sp
Added in version 206\&.
.RE
.PP
\fBjson\-sse\fR
.RS 4
formats entries as JSON data structures, but wraps them in a format suitable for
\m[blue]\fBServer\-Sent Events\fR\m[]\&\s-2\u[5]\d\s+2\&.
.sp
Added in version 206\&.
.RE
.PP
\fBjson\-seq\fR
.RS 4
formats entries as JSON data structures, but prefixes them with an ASCII Record Separator character (0x1E) and suffixes them with an ASCII Line Feed character (0x0A), in accordance with
\m[blue]\fBJavaScript Object Notation (JSON) Text Sequences\fR\m[]\&\s-2\u[6]\d\s+2
("application/json\-seq")\&.
.sp
Added in version 240\&.
.RE
.PP
\fBcat\fR
.RS 4
generates a very terse output, only showing the actual message of each journal entry with no metadata, not even a timestamp\&. If combined with the
\fB\-\-output\-fields=\fR
option will output the listed fields for each log record, instead of the message\&.
.sp
Added in version 206\&.
.RE
.PP
\fBwith\-unit\fR
.RS 4
similar to
\fBshort\-full\fR, but prefixes the unit and user unit names instead of the traditional syslog identifier\&. Useful when using templated instances, as it will include the arguments in the unit names\&.
.sp
Added in version 239\&.
.RE
.RE
.PP
\fB\-\-truncate\-newline\fR
.RS 4
Truncate each log message at the first newline character on output, so that only the first line of each message is displayed\&.
.sp
Added in version 254\&.
.RE
.PP
\fB\-\-output\-fields=\fR
.RS 4
A comma separated list of the fields which should be included in the output\&. This has an effect only for the output modes which would normally show all fields (\fBverbose\fR,
\fBexport\fR,
\fBjson\fR,
\fBjson\-pretty\fR,
\fBjson\-sse\fR
and
\fBjson\-seq\fR), as well as on
\fBcat\fR\&. For the former, the
"__CURSOR",
"__REALTIME_TIMESTAMP",
"__MONOTONIC_TIMESTAMP", and
"_BOOT_ID"
fields are always printed\&.
.sp
Added in version 236\&.
.RE
.PP
\fB\-n\fR, \fB\-\-lines=\fR
.RS 4
Show the most recent journal events and limit the number of events shown\&. The argument is a positive integer or
"all"
to disable the limit\&. Additionally, if the number is prefixed with
"+", the oldest journal events are used instead\&. The default value is 10 if no argument is given\&.
.sp
If
\fB\-\-follow\fR
is used, this option is implied\&. When not prefixed with
"+"
and used with
\fB\-\-grep=\fR,
\fB\-\-reverse\fR
is implied\&.
.RE
.PP
\fB\-r\fR, \fB\-\-reverse\fR
.RS 4
Reverse output so that the newest entries are displayed first\&.
.sp
Added in version 198\&.
.RE
.PP
\fB\-\-show\-cursor\fR
.RS 4
The cursor is shown after the last entry after two dashes:
.sp
.if n \{\
.RS 4
.\}
.nf
\-\- cursor: s=0639\&...
.fi
.if n \{\
.RE
.\}
.sp
The format of the cursor is private and subject to change\&.
.sp
Added in version 209\&.
.RE
.PP
\fB\-\-utc\fR
.RS 4
Express time in Coordinated Universal Time (UTC)\&.
.sp
Added in version 217\&.
.RE
.PP
\fB\-x\fR, \fB\-\-catalog\fR
.RS 4
Augment log lines with explanation texts from the message catalog\&. This will add explanatory help texts to log messages in the output where this is available\&. These short help texts will explain the context of an error or log event, possible solutions, as well as pointers to support forums, developer documentation, and any other relevant manuals\&. Note that help texts are not available for all messages, but only for selected ones\&. For more information on the message catalog, see
\m[blue]\fBJournal Message Catalogs\fR\m[]\&\s-2\u[7]\d\s+2\&.
.sp
Note: when attaching
\fBjournalctl\fR
output to bug reports, please do
\fInot\fR
use
\fB\-x\fR\&.
.sp
Added in version 196\&.
.RE
.PP
\fB\-\-no\-hostname\fR
.RS 4
Do not show the hostname field of log messages originating from the local host\&. This switch has an effect only on the
\fBshort\fR
family of output modes (see above)\&.
.sp
Note: this option does not remove occurrences of the hostname from log entries themselves, so it does not prevent the hostname from being visible in the logs\&.
.sp
Added in version 230\&.
.RE
.PP
\fB\-\-no\-full\fR, \fB\-\-full\fR, \fB\-l\fR
.RS 4
Ellipsize fields when they do not fit in available columns\&. The default is to show full fields, allowing them to wrap or be truncated by the pager, if one is used\&.
.sp
The old options
\fB\-l\fR/\fB\-\-full\fR
are not useful anymore, except to undo
\fB\-\-no\-full\fR\&.
.sp
Added in version 196\&.
.RE
.PP
\fB\-a\fR, \fB\-\-all\fR
.RS 4
Show all fields in full, even if they include unprintable characters or are very long\&. By default, fields with unprintable characters are abbreviated as "blob data"\&. (Note that the pager may escape unprintable characters again\&.)
.RE
.PP
\fB\-f\fR, \fB\-\-follow\fR
.RS 4
Show only the most recent journal entries, and continuously print new entries as they are appended to the journal\&.
.RE
.PP
\fB\-\-no\-tail\fR
.RS 4
Show all stored output lines, even in follow mode\&. Undoes the effect of
\fB\-\-lines=\fR\&.
.RE
.PP
\fB\-q\fR, \fB\-\-quiet\fR
.RS 4
Suppresses all informational messages (i\&.e\&. "\-\- Journal begins at \&...", "\-\- Reboot \-\-"), any warning messages regarding inaccessible system journals when run as a normal user\&.
.RE
.SH "PAGER CONTROL OPTIONS"
.PP
The following options control page support:
.PP
\fB\-\-no\-pager\fR
.RS 4
Do not pipe output into a pager\&.
.RE
.PP
\fB\-e\fR, \fB\-\-pager\-end\fR
.RS 4
Immediately jump to the end of the journal inside the implied pager tool\&. This implies
\fB\-n1000\fR
to guarantee that the pager will not buffer logs of unbounded size\&. This may be overridden with an explicit
\fB\-n\fR
with some other numeric value, while
\fB\-nall\fR
will disable this cap\&. Note that this option is only supported for the
\fBless\fR(1)
pager\&.
.sp
Added in version 198\&.
.RE
.SH "FORWARD SECURE SEALING (FSS) OPTIONS"
.PP
The following options may be used together with the
\fB\-\-setup\-keys\fR
command described below:
.PP
\fB\-\-interval=\fR
.RS 4
Specifies the change interval for the sealing key when generating an FSS key pair with
\fB\-\-setup\-keys\fR\&. Shorter intervals increase CPU consumption but shorten the time range of undetectable journal alterations\&. Defaults to 15min\&.
.sp
Added in version 189\&.
.RE
.PP
\fB\-\-verify\-key=\fR
.RS 4
Specifies the FSS verification key to use for the
\fB\-\-verify\fR
operation\&.
.sp
Added in version 189\&.
.RE
.PP
\fB\-\-force\fR
.RS 4
When
\fB\-\-setup\-keys\fR
is passed and Forward Secure Sealing (FSS) has already been configured, recreate FSS keys\&.
.sp
Added in version 206\&.
.RE
.SH "COMMANDS"
.PP
The following commands are understood\&. If none is specified the default is to display journal records:
.PP
\fB\-N\fR, \fB\-\-fields\fR
.RS 4
Print all field names currently used in all entries of the journal\&.
.sp
Added in version 229\&.
.RE
.PP
\fB\-F\fR, \fB\-\-field=\fR
.RS 4
Print all possible data values the specified field can take in all entries of the journal\&.
.sp
Added in version 195\&.
.RE
.PP
\fB\-\-list\-boots\fR
.RS 4
Show a tabular list of boot numbers (relative to the current boot), their IDs, and the timestamps of the first and last message pertaining to the boot\&. When specified with
\fB\-n/\-\-lines=\fR\fB[+]\fR\fB\fIN\fR\fR
option, only the first (when the number prefixed with
"+") or the last (without prefix)
\fIN\fR
entries will be shown\&. When specified with
\fB\-r/\-\-reverse\fR, the list will be shown in the reverse order\&.
.sp
Added in version 209\&.
.RE
.PP
\fB\-\-list\-invocations\fR
.RS 4
List invocation IDs of a unit\&. Requires a unit name with
\fB\-u/\-\-unit=\fR
or
\fB\-\-user\-unit=\fR\&. Show a tabular list of invocation numbers (relative to the current or latest invocation), their IDs, and the timestamps of the first and last message pertaining to the invocation\&. When
\fB\-b/\-boot\fR
is specified, invocations in the boot will be shown\&. When specified with
\fB\-n/\-\-lines=\fR\fB[+]\fR\fB\fIN\fR\fR
option, only the first (when the number prefixed with
"+") or the last (without prefix)
\fIN\fR
entries will be shown\&. When specified with
\fB\-r/\-\-reverse\fR, the list will be shown in the reverse order\&.
.sp
Added in version 257\&.
.RE
.PP
\fB\-\-disk\-usage\fR
.RS 4
Shows the current disk usage of all journal files\&. This shows the sum of the disk usage of all archived and active journal files\&.
.sp
Added in version 190\&.
.RE
.PP
\fB\-\-vacuum\-size=\fR, \fB\-\-vacuum\-time=\fR, \fB\-\-vacuum\-files=\fR
.RS 4
\fB\-\-vacuum\-size=\fR
removes the oldest archived journal files until the disk space they use falls below the specified size\&. Accepts the usual
"K",
"M",
"G"
and
"T"
suffixes (to the base of 1024)\&.
.sp
\fB\-\-vacuum\-time=\fR
removes archived journal files older than the specified timespan\&. Accepts the usual
"s"
(default),
"m",
"h",
"days",
"weeks",
"months", and
"years"
suffixes, see
\fBsystemd.time\fR(7)
for details\&.
.sp
\fB\-\-vacuum\-files=\fR
leaves only the specified number of separate journal files\&.
.sp
Note that running
\fB\-\-vacuum\-size=\fR
has only an indirect effect on the output shown by
\fB\-\-disk\-usage\fR, as the latter includes active journal files, while the vacuuming operation only operates on archived journal files\&. Similarly,
\fB\-\-vacuum\-files=\fR
might not actually reduce the number of journal files to below the specified number, as it will not remove active journal files\&.
.sp
\fB\-\-vacuum\-size=\fR,
\fB\-\-vacuum\-time=\fR
and
\fB\-\-vacuum\-files=\fR
may be combined in a single invocation to enforce any combination of a size, a time and a number of files limit on the archived journal files\&. Specifying any of these three parameters as zero is equivalent to not enforcing the specific limit, and is thus redundant\&.
.sp
These three switches may also be combined with
\fB\-\-rotate\fR
into one command\&. If so, all active files are rotated first, and the requested vacuuming operation is executed right after\&. The rotation has the effect that all currently active files are archived (and potentially new, empty journal files opened as replacement), and hence the vacuuming operation has the greatest effect as it can take all log data written so far into account\&.
.sp
Added in version 218\&.
.RE
.PP
\fB\-\-verify\fR
.RS 4
Check the journal file for internal consistency\&. If the file has been generated with FSS enabled and the FSS verification key has been specified with
\fB\-\-verify\-key=\fR, authenticity of the journal file is verified\&.
.sp
Added in version 189\&.
.RE
.PP
\fB\-\-sync\fR
.RS 4
Asks the journal daemon to write all yet unwritten journal data to the backing file system and synchronize all journals\&. This call does not return until the synchronization operation is complete\&. This command guarantees that any log messages written before its invocation are safely stored on disk at the time it returns\&.
.sp
Added in version 228\&.
.RE
.PP
\fB\-\-relinquish\-var\fR
.RS 4
Asks the journal daemon for the reverse operation to
\fB\-\-flush\fR: if requested the daemon will write further log data to
/run/log/journal/
and stops writing to
/var/log/journal/\&. A subsequent call to
\fB\-\-flush\fR
causes the log output to switch back to
/var/log/journal/, see above\&.
.sp
Added in version 243\&.
.RE
.PP
\fB\-\-smart\-relinquish\-var\fR
.RS 4
Similar to
\fB\-\-relinquish\-var\fR, but executes no operation if the root file system and
/var/log/journal/
reside on the same mount point\&. This operation is used during system shutdown in order to make the journal daemon stop writing data to
/var/log/journal/
in case that directory is located on a mount point that needs to be unmounted\&.
.sp
Added in version 243\&.
.RE
.PP
\fB\-\-flush\fR
.RS 4
Asks the journal daemon to flush any log data stored in
/run/log/journal/
into
/var/log/journal/, if persistent storage is enabled\&. This call does not return until the operation is complete\&. Note that this call is idempotent: the data is only flushed from
/run/log/journal/
into
/var/log/journal/
once during system runtime (but see
\fB\-\-relinquish\-var\fR
below), and this command exits cleanly without executing any operation if this has already happened\&. This command effectively guarantees that all data is flushed to
/var/log/journal/
at the time it returns\&.
.sp
Added in version 217\&.
.RE
.PP
\fB\-\-rotate\fR
.RS 4
Asks the journal daemon to rotate journal files\&. This call does not return until the rotation operation is complete\&. Journal file rotation has the effect that all currently active journal files are marked as archived and renamed, so that they are never written to in future\&. New (empty) journal files are then created in their place\&. This operation may be combined with
\fB\-\-vacuum\-size=\fR,
\fB\-\-vacuum\-time=\fR
and
\fB\-\-vacuum\-file=\fR
into a single command, see above\&.
.sp
Added in version 227\&.
.RE
.PP
\fB\-\-header\fR
.RS 4
Instead of showing journal contents, show internal header information of the journal fields accessed\&.
.sp
This option is particularly useful when trying to identify out\-of\-order journal entries, as happens for example when the machine is booted with the wrong system time\&.
.sp
Added in version 187\&.
.RE
.PP
\fB\-\-list\-catalog \fR\fB[\fI128\-bit\-ID\&...\fR]\fR
.RS 4
List the contents of the message catalog as a table of message IDs, plus their short description strings\&.
.sp
If any
\fI128\-bit\-ID\fRs are specified, only those entries are shown\&.
.sp
Added in version 196\&.
.RE
.PP
\fB\-\-dump\-catalog \fR\fB[\fI128\-bit\-ID\&...\fR]\fR
.RS 4
Show the contents of the message catalog, with entries separated by a line consisting of two dashes and the ID (the format is the same as
\&.catalog
files)\&.
.sp
If any
\fI128\-bit\-ID\fRs are specified, only those entries are shown\&.
.sp
Added in version 199\&.
.RE
.PP
\fB\-\-update\-catalog\fR
.RS 4
Update the message catalog index\&. This command needs to be executed each time new catalog files are installed, removed, or updated to rebuild the binary catalog index\&.
.sp
Added in version 196\&.
.RE
.PP
\fB\-\-setup\-keys\fR
.RS 4
Instead of showing journal contents, generate a new key pair for Forward Secure Sealing (FSS)\&. This will generate a sealing key and a verification key\&. The sealing key is stored in the journal data directory and shall remain on the host\&. The verification key should be stored externally\&. Refer to the
\fBSeal=\fR
option in
\fBjournald.conf\fR(5)
for information on Forward Secure Sealing and for a link to a refereed scholarly paper detailing the cryptographic theory it is based on\&.
.sp
Added in version 189\&.
.RE
.PP
\fB\-h\fR, \fB\-\-help\fR
.RS 4
Print a short help text and exit\&.
.RE
.PP
\fB\-\-version\fR
.RS 4
Print a short version string and exit\&.
.RE
.SH "EXIT STATUS"
.PP
On success, 0 is returned; otherwise, a non\-zero failure code is returned\&.
.SH "ENVIRONMENT"
.PP
\fI$SYSTEMD_LOG_LEVEL\fR
.RS 4
The maximum log level of emitted messages (messages with a higher log level, i\&.e\&. less important ones, will be suppressed)\&. Takes a comma\-separated list of values\&. A value may be either one of (in order of decreasing importance)
\fBemerg\fR,
\fBalert\fR,
\fBcrit\fR,
\fBerr\fR,
\fBwarning\fR,
\fBnotice\fR,
\fBinfo\fR,
\fBdebug\fR, or an integer in the range 0\&...7\&. See
\fBsyslog\fR(3)
for more information\&. Each value may optionally be prefixed with one of
\fBconsole\fR,
\fBsyslog\fR,
\fBkmsg\fR
or
\fBjournal\fR
followed by a colon to set the maximum log level for that specific log target (e\&.g\&.
\fBSYSTEMD_LOG_LEVEL=debug,console:info\fR
specifies to log at debug level except when logging to the console which should be at info level)\&. Note that the global maximum log level takes priority over any per target maximum log levels\&.
.RE
.PP
\fI$SYSTEMD_LOG_COLOR\fR
.RS 4
A boolean\&. If true, messages written to the tty will be colored according to priority\&.
.sp
This setting is only useful when messages are written directly to the terminal, because
\fBjournalctl\fR(1)
and other tools that display logs will color messages based on the log level on their own\&.
.RE
.PP
\fI$SYSTEMD_LOG_TIME\fR
.RS 4
A boolean\&. If true, console log messages will be prefixed with a timestamp\&.
.sp
This setting is only useful when messages are written directly to the terminal or a file, because
\fBjournalctl\fR(1)
and other tools that display logs will attach timestamps based on the entry metadata on their own\&.
.RE
.PP
\fI$SYSTEMD_LOG_LOCATION\fR
.RS 4
A boolean\&. If true, messages will be prefixed with a filename and line number in the source code where the message originates\&.
.sp
Note that the log location is often attached as metadata to journal entries anyway\&. Including it directly in the message text can nevertheless be convenient when debugging programs\&.
.RE
.PP
\fI$SYSTEMD_LOG_TID\fR
.RS 4
A boolean\&. If true, messages will be prefixed with the current numerical thread ID (TID)\&.
.sp
Note that the this information is attached as metadata to journal entries anyway\&. Including it directly in the message text can nevertheless be convenient when debugging programs\&.
.RE
.PP
\fI$SYSTEMD_LOG_TARGET\fR
.RS 4
The destination for log messages\&. One of
\fBconsole\fR
(log to the attached tty),
\fBconsole\-prefixed\fR
(log to the attached tty but with prefixes encoding the log level and "facility", see
\fBsyslog\fR(3),
\fBkmsg\fR
(log to the kernel circular log buffer),
\fBjournal\fR
(log to the journal),
\fBjournal\-or\-kmsg\fR
(log to the journal if available, and to kmsg otherwise),
\fBauto\fR
(determine the appropriate log target automatically, the default),
\fBnull\fR
(disable log output)\&.
.RE
.PP
\fI$SYSTEMD_LOG_RATELIMIT_KMSG\fR
.RS 4
Whether to ratelimit kmsg or not\&. Takes a boolean\&. Defaults to
"true"\&. If disabled, systemd will not ratelimit messages written to kmsg\&.
.RE
.PP
\fI$SYSTEMD_PAGER\fR, \fI$PAGER\fR
.RS 4
Pager to use when
\fB\-\-no\-pager\fR
is not given\&.
\fI$SYSTEMD_PAGER\fR
is used if set; otherwise
\fI$PAGER\fR
is used\&. If neither
\fI$SYSTEMD_PAGER\fR
nor
\fI$PAGER\fR
are set, a set of well\-known pager implementations is tried in turn, including
\fBless\fR(1)
and
\fBmore\fR(1), until one is found\&. If no pager implementation is discovered, no pager is invoked\&. Setting those environment variables to an empty string or the value
"cat"
is equivalent to passing
\fB\-\-no\-pager\fR\&.
.sp
Note: if
\fI$SYSTEMD_PAGERSECURE\fR
is not set,
\fI$SYSTEMD_PAGER\fR
and
\fI$PAGER\fR
can only be used to disable the pager (with
"cat"
or
""), and are otherwise ignored\&.
.RE
.PP
\fI$SYSTEMD_LESS\fR
.RS 4
Override the options passed to
\fBless\fR
(by default
"FRSXMK")\&.
.sp
Users might want to change two options in particular:
.PP
\fBK\fR
.RS 4
This option instructs the pager to exit immediately when
Ctrl+C
is pressed\&. To allow
\fBless\fR
to handle
Ctrl+C
itself to switch back to the pager command prompt, unset this option\&.
.sp
If the value of
\fI$SYSTEMD_LESS\fR
does not include
"K", and the pager that is invoked is
\fBless\fR,
Ctrl+C
will be ignored by the executable, and needs to be handled by the pager\&.
.RE
.PP
\fBX\fR
.RS 4
This option instructs the pager to not send termcap initialization and deinitialization strings to the terminal\&. It is set by default to allow command output to remain visible in the terminal even after the pager exits\&. Nevertheless, this prevents some pager functionality from working, in particular paged output cannot be scrolled with the mouse\&.
.RE
.sp
Note that setting the regular
\fI$LESS\fR
environment variable has no effect for
\fBless\fR
invocations by systemd tools\&.
.sp
See
\fBless\fR(1)
for more discussion\&.
.RE
.PP
\fI$SYSTEMD_LESSCHARSET\fR
.RS 4
Override the charset passed to
\fBless\fR
(by default
"utf\-8", if the invoking terminal is determined to be UTF\-8 compatible)\&.
.sp
Note that setting the regular
\fI$LESSCHARSET\fR
environment variable has no effect for
\fBless\fR
invocations by systemd tools\&.
.RE
.PP
\fI$SYSTEMD_PAGERSECURE\fR
.RS 4
Common pager commands like
\fBless\fR(1), in addition to "paging", i\&.e\&. scrolling through the output, support opening of or writing to other files and running arbitrary shell commands\&. When commands are invoked with elevated privileges, for example under
\fBsudo\fR(8)
or
\fBpkexec\fR(1), the pager becomes a security boundary\&. Care must be taken that only programs with strictly limited functionality are used as pagers, and unintended interactive features like opening or creation of new files or starting of subprocesses are not allowed\&. "Secure mode" for the pager may be enabled as described below,
\fIif the pager supports that\fR
(most pagers are not written in a way that takes this into consideration)\&. It is recommended to either explicitly enable "secure mode" or to completely disable the pager using
\fB\-\-no\-pager\fR
or
\fIPAGER=cat\fR
when allowing untrusted users to execute commands with elevated privileges\&.
.sp
This option takes a boolean argument\&. When set to true, the "secure mode" of the pager is enabled\&. In "secure mode",
\fBLESSSECURE=1\fR
will be set when invoking the pager, which instructs the pager to disable commands that open or create new files or start new subprocesses\&. Currently only
\fBless\fR(1)
is known to understand this variable and implement "secure mode"\&.
.sp
When set to false, no limitation is placed on the pager\&. Setting
\fISYSTEMD_PAGERSECURE=0\fR
or not removing it from the inherited environment may allow the user to invoke arbitrary commands\&.
.sp
When
\fI$SYSTEMD_PAGERSECURE\fR
is not set, systemd tools attempt to automatically figure out if "secure mode" should be enabled and whether the pager supports it\&. "Secure mode" is enabled if the effective UID is not the same as the owner of the login session, see
\fBgeteuid\fR(2)
and
\fBsd_pid_get_owner_uid\fR(3), or when running under
\fBsudo\fR(8)
or similar tools (\fI$SUDO_UID\fR
is set
\&\s-2\u[8]\d\s+2)\&. In those cases,
\fISYSTEMD_PAGERSECURE=1\fR
will be set and pagers which are not known to implement "secure mode" will not be used at all\&. Note that this autodetection only covers the most common mechanisms to elevate privileges and is intended as convenience\&. It is recommended to explicitly set
\fI$SYSTEMD_PAGERSECURE\fR
or disable the pager\&.
.sp
Note that if the
\fI$SYSTEMD_PAGER\fR
or
\fI$PAGER\fR
variables are to be honoured, other than to disable the pager,
\fI$SYSTEMD_PAGERSECURE\fR
must be set too\&.
.RE
.PP
\fI$SYSTEMD_COLORS\fR
.RS 4
Takes a boolean argument\&. When true,
\fBsystemd\fR
and related utilities will use colors in their output, otherwise the output will be monochrome\&. Additionally, the variable can take one of the following special values:
"16",
"256"
to restrict the use of colors to the base 16 or 256 ANSI colors, respectively\&. This can be specified to override the automatic decision based on
\fI$TERM\fR
and what the console is connected to\&.
.RE
.PP
\fI$SYSTEMD_URLIFY\fR
.RS 4
The value must be a boolean\&. Controls whether clickable links should be generated in the output for terminal emulators supporting this\&. This can be specified to override the decision that
\fBsystemd\fR
makes based on
\fI$TERM\fR
and other conditions\&.
.RE
.SH "EXAMPLES"
.PP
Without arguments, all collected logs are shown unfiltered:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl
.fi
.if n \{\
.RE
.\}
.PP
With one match specified, all entries with a field matching the expression are shown:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl _SYSTEMD_UNIT=avahi\-daemon\&.service
journalctl _SYSTEMD_CGROUP=/user\&.slice/user\-42\&.slice/session\-c1\&.scope
.fi
.if n \{\
.RE
.\}
.PP
If two different fields are matched, only entries matching both expressions at the same time are shown:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl _SYSTEMD_UNIT=avahi\-daemon\&.service _PID=28097
.fi
.if n \{\
.RE
.\}
.PP
If two matches refer to the same field, all entries matching either expression are shown:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl _SYSTEMD_UNIT=avahi\-daemon\&.service _SYSTEMD_UNIT=dbus\&.service
.fi
.if n \{\
.RE
.\}
.PP
If the separator
"+"
is used, two expressions may be combined in a logical OR\&. The following will show all messages from the Avahi service process with the PID 28097 plus all messages from the D\-Bus service (from any of its processes):
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl _SYSTEMD_UNIT=avahi\-daemon\&.service _PID=28097 + _SYSTEMD_UNIT=dbus\&.service
.fi
.if n \{\
.RE
.\}
.PP
To show all fields emitted
\fIby\fR
a unit and
\fIabout\fR
the unit, option
\fB\-u\fR/\fB\-\-unit=\fR
should be used\&.
\fBjournalctl \-u \fR\fB\fIname\fR\fR
expands to a complex filter similar to
.sp
.if n \{\
.RS 4
.\}
.nf
_SYSTEMD_UNIT=\fIname\fR\&.service
+ UNIT=\fIname\fR\&.service _PID=1
+ OBJECT_SYSTEMD_UNIT=\fIname\fR\&.service _UID=0
+ COREDUMP_UNIT=\fIname\fR\&.service _UID=0 MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1
.fi
.if n \{\
.RE
.\}
.sp
(see
\fBsystemd.journal-fields\fR(7)
for an explanation of those patterns)\&.
.PP
Show all logs generated by the D\-Bus executable:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl /usr/bin/dbus\-daemon
.fi
.if n \{\
.RE
.\}
.PP
Show all kernel logs from previous boot:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl \-k \-b \-1
.fi
.if n \{\
.RE
.\}
.PP
Show a live log display from a system service
apache\&.service:
.sp
.if n \{\
.RS 4
.\}
.nf
journalctl \-f \-u apache
.fi
.if n \{\
.RE
.\}
.SH "SEE ALSO"
.PP
\fBsystemd\fR(1), \fBsystemd-cat\fR(1), \fBsystemd-journald.service\fR(8), \fBsystemctl\fR(1), \fBcoredumpctl\fR(1), \fBsystemd.journal-fields\fR(7), \fBjournald.conf\fR(5), \fBsystemd.time\fR(7), \fBsystemd-journal-remote.service\fR(8), \fBsystemd-journal-upload.service\fR(8)
.SH "NOTES"
.IP " 1." 4
Discoverable Partitions Specification
.RS 4
\%https://uapi-group.org/specifications/specs/discoverable_partitions_specification
.RE
.IP " 2." 4
RFC 3339
.RS 4
\%https://tools.ietf.org/html/rfc3339
.RE
.IP " 3." 4
Journal Export Format
.RS 4
\%https://systemd.io/JOURNAL_EXPORT_FORMATS#journal-export-format
.RE
.IP " 4." 4
Journal JSON Format
.RS 4
\%https://systemd.io/JOURNAL_EXPORT_FORMATS#journal-json-format
.RE
.IP " 5." 4
Server-Sent Events
.RS 4
\%https://developer.mozilla.org/en-US/docs/Server-sent_events/Using_server-sent_events
.RE
.IP " 6." 4
JavaScript Object Notation (JSON) Text Sequences
.RS 4
\%https://tools.ietf.org/html/rfc7464
.RE
.IP " 7." 4
Journal Message Catalogs
.RS 4
\%https://systemd.io/CATALOG
.RE
.IP " 8." 4
It is recommended for other tools to set and check
\fI$SUDO_UID\fR
as appropriate, treating it is a common interface.
|