File size: 122,773 Bytes
1be4d5c | 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 | LineNumber,RelativeTime,Timestamp,Month,Day,Time,Hostname,Process,PID,Message,RawDate,Label
20789,15286147,28959327,Dec,6,04:15:27,combo,kernel,,Out of Memory: Killed process 8292 (httpd).,Dec 6 04:15:27,Normal
20790,15287945,28961125,Dec,6,04:45:25,combo,kernel,,Out of Memory: Killed process 8293 (httpd).,Dec 6 04:45:25,Normal
20791,15287962,28961142,Dec,6,04:45:42,combo,kernel,,Out of Memory: Killed process 8294 (httpd).,Dec 6 04:45:42,Normal
20792,15288243,28961423,Dec,6,04:50:23,combo,kernel,,Out of Memory: Killed process 8715 (httpd).,Dec 6 04:50:23,Normal
20793,15288270,28961450,Dec,6,04:50:50,combo,kernel,,Out of Memory: Killed process 8716 (httpd).,Dec 6 04:50:50,Normal
20794,15288275,28961455,Dec,6,04:50:55,combo,kernel,,Out of Memory: Killed process 8717 (httpd).,Dec 6 04:50:55,Normal
20795,15288283,28961463,Dec,6,04:51:03,combo,kernel,,Out of Memory: Killed process 8332 (sendmail).,Dec 6 04:51:03,Normal
20796,15288315,28961495,Dec,6,04:51:35,combo,kernel,,Out of Memory: Killed process 8770 (httpd).,Dec 6 04:51:35,Normal
20797,15288321,28961501,Dec,6,04:51:41,combo,kernel,,Out of Memory: Killed process 8771 (httpd).,Dec 6 04:51:41,Normal
20798,15288332,28961512,Dec,6,04:51:52,combo,kernel,,Out of Memory: Killed process 8765 (python).,Dec 6 04:51:52,Normal
20799,15288554,28961734,Dec,6,04:55:34,combo,kernel,,Out of Memory: Killed process 8772 (httpd).,Dec 6 04:55:34,Normal
20800,15288572,28961752,Dec,6,04:55:52,combo,kernel,,Out of Memory: Killed process 8773 (httpd).,Dec 6 04:55:52,Normal
20801,15288593,28961773,Dec,6,04:56:13,combo,kernel,,Out of Memory: Killed process 8783 (httpd).,Dec 6 04:56:13,Normal
20802,15288601,28961781,Dec,6,04:56:21,combo,kernel,,Out of Memory: Killed process 8784 (httpd).,Dec 6 04:56:21,Normal
20803,15288620,28961800,Dec,6,04:56:40,combo,kernel,,Out of Memory: Killed process 8785 (httpd).,Dec 6 04:56:40,Normal
20804,15288632,28961812,Dec,6,04:56:52,combo,kernel,,Out of Memory: Killed process 8786 (httpd).,Dec 6 04:56:52,Normal
20805,15288642,28961822,Dec,6,04:57:02,combo,kernel,,Out of Memory: Killed process 8780 (python).,Dec 6 04:57:02,Normal
20806,15288662,28961842,Dec,6,04:57:22,combo,kernel,,Out of Memory: Killed process 8787 (httpd).,Dec 6 04:57:22,Normal
20807,15288685,28961865,Dec,6,04:57:45,combo,kernel,,Out of Memory: Killed process 8788 (httpd).,Dec 6 04:57:45,Normal
20808,15288849,28962029,Dec,6,05:00:29,combo,kernel,,Out of Memory: Killed process 8789 (httpd).,Dec 6 05:00:29,Normal
20809,15288858,28962038,Dec,6,05:00:38,combo,kernel,,Out of Memory: Killed process 8790 (httpd).,Dec 6 05:00:38,Normal
20810,15288871,28962051,Dec,6,05:00:51,combo,kernel,,Out of Memory: Killed process 8797 (python).,Dec 6 05:00:51,Normal
20811,15288884,28962064,Dec,6,05:01:04,combo,kernel,,Out of Memory: Killed process 8801 (httpd).,Dec 6 05:01:04,Normal
20812,15288890,28962070,Dec,6,05:01:10,combo,kernel,,Out of Memory: Killed process 8802 (httpd).,Dec 6 05:01:10,Normal
20813,15288897,28962077,Dec,6,05:01:17,combo,kernel,,Out of Memory: Killed process 8805 (httpd).,Dec 6 05:01:17,Normal
20817,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<0212ebf3>] __alloc_pages+0x274/0x281,Dec 6 05:01:26,Normal
20819,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<02135dee>] swapin_readahead+0x2c/0x47,Dec 6 05:01:26,Normal
20818,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<0213d341>] read_swap_cache_async+0x41/0x84,Dec 6 05:01:26,Normal
20822,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<02114537>] do_page_fault+0x12f/0x446,Dec 6 05:01:26,Normal
20823,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<0213f423>] put_user_size+0x29/0x2d,Dec 6 05:01:26,Normal
20824,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<0227ecc1>] schedule+0x3ed/0x44d,Dec 6 05:01:26,Normal
20825,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<0210737b>] do_IRQ+0x15d/0x169,Dec 6 05:01:26,Normal
20826,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<02114408>] do_page_fault+0x0/0x446,Dec 6 05:01:26,Normal
20821,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<021364a7>] handle_mm_fault+0x9d/0xe2,Dec 6 05:01:26,Normal
20820,15288906,28962086,Dec,6,05:01:26,combo,kernel,,[<02135e66>] do_swap_page+0x5d/0x1f9,Dec 6 05:01:26,Normal
20814,15288906,28962086,Dec,6,05:01:26,combo,kernel,,Out of Memory: Killed process 8806 (httpd).,Dec 6 05:01:26,Normal
20815,15288906,28962086,Dec,6,05:01:26,combo,kernel,,"httpd: page allocation failure. order:0, mode:0xd2",Dec 6 05:01:26,Anomaly
20816,15288906,28962086,Dec,6,05:01:26,combo,kernel,,Call Trace:,Dec 6 05:01:26,Normal
20828,15288913,28962093,Dec,6,05:01:33,combo,kernel,,Out of Memory: Killed process 8699 (updatedb).,Dec 6 05:01:33,Normal
20829,15288921,28962101,Dec,6,05:01:41,combo,su(pam_unix),8809.0,session opened for user news by (uid=0),Dec 6 05:01:41,Normal
20830,15288928,28962108,Dec,6,05:01:48,combo,su(pam_unix),8809.0,session closed for user news,Dec 6 05:01:48,Normal
20831,15290052,28963232,Dec,6,05:20:32,combo,kernel,,Out of Memory: Killed process 8867 (httpd).,Dec 6 05:20:32,Normal
20832,15290066,28963246,Dec,6,05:20:46,combo,kernel,,Out of Memory: Killed process 8868 (httpd).,Dec 6 05:20:46,Normal
20833,15290075,28963255,Dec,6,05:20:55,combo,kernel,,Out of Memory: Killed process 8869 (httpd).,Dec 6 05:20:55,Normal
20834,15290346,28963526,Dec,6,05:25:26,combo,kernel,,Out of Memory: Killed process 8905 (httpd).,Dec 6 05:25:26,Normal
20835,15290643,28963823,Dec,6,05:30:23,combo,kernel,,Out of Memory: Killed process 8906 (httpd).,Dec 6 05:30:23,Normal
20836,15290651,28963831,Dec,6,05:30:31,combo,kernel,,Out of Memory: Killed process 8918 (httpd).,Dec 6 05:30:31,Normal
20837,15290656,28963836,Dec,6,05:30:36,combo,kernel,,Out of Memory: Killed process 8926 (python).,Dec 6 05:30:36,Normal
20838,15290941,28964121,Dec,6,05:35:21,combo,kernel,,Out of Memory: Killed process 8931 (httpd).,Dec 6 05:35:21,Normal
20839,15290947,28964127,Dec,6,05:35:27,combo,kernel,,Out of Memory: Killed process 8930 (httpd).,Dec 6 05:35:27,Normal
20840,15290958,28964138,Dec,6,05:35:38,combo,kernel,,Out of Memory: Killed process 8934 (httpd).,Dec 6 05:35:38,Normal
20841,15290967,28964147,Dec,6,05:35:47,combo,kernel,,Out of Memory: Killed process 8943 (python).,Dec 6 05:35:47,Normal
20842,15291235,28964415,Dec,6,05:40:15,combo,kernel,,Out of Memory: Killed process 8945 (httpd).,Dec 6 05:40:15,Normal
20843,15291249,28964429,Dec,6,05:40:29,combo,kernel,,Out of Memory: Killed process 8946 (httpd).,Dec 6 05:40:29,Normal
20844,15291255,28964435,Dec,6,05:40:35,combo,kernel,,Out of Memory: Killed process 8952 (python).,Dec 6 05:40:35,Normal
20845,15291535,28964715,Dec,6,05:45:15,combo,kernel,,Out of Memory: Killed process 8954 (httpd).,Dec 6 05:45:15,Normal
20846,15291542,28964722,Dec,6,05:45:22,combo,kernel,,Out of Memory: Killed process 8955 (httpd).,Dec 6 05:45:22,Normal
20847,15291550,28964730,Dec,6,05:45:30,combo,kernel,,Out of Memory: Killed process 8958 (python).,Dec 6 05:45:30,Normal
20848,15291840,28965020,Dec,6,05:50:20,combo,kernel,,Out of Memory: Killed process 8960 (httpd).,Dec 6 05:50:20,Normal
20849,15291851,28965031,Dec,6,05:50:31,combo,kernel,,Out of Memory: Killed process 8961 (httpd).,Dec 6 05:50:31,Normal
20850,15291857,28965037,Dec,6,05:50:37,combo,kernel,,Out of Memory: Killed process 8966 (python).,Dec 6 05:50:37,Normal
20851,15292135,28965315,Dec,6,05:55:15,combo,kernel,,Out of Memory: Killed process 8969 (httpd).,Dec 6 05:55:15,Normal
20852,15292143,28965323,Dec,6,05:55:23,combo,kernel,,Out of Memory: Killed process 8970 (httpd).,Dec 6 05:55:23,Normal
20853,15292148,28965328,Dec,6,05:55:28,combo,kernel,,Out of Memory: Killed process 8973 (python).,Dec 6 05:55:28,Normal
20854,15292435,28965615,Dec,6,06:00:15,combo,kernel,,Out of Memory: Killed process 8975 (httpd).,Dec 6 06:00:15,Normal
20855,15292443,28965623,Dec,6,06:00:23,combo,kernel,,Out of Memory: Killed process 8976 (httpd).,Dec 6 06:00:23,Normal
20856,15292453,28965633,Dec,6,06:00:33,combo,kernel,,Out of Memory: Killed process 8982 (python).,Dec 6 06:00:33,Normal
20857,15292746,28965926,Dec,6,06:05:26,combo,kernel,,Out of Memory: Killed process 8984 (httpd).,Dec 6 06:05:26,Normal
20858,15292770,28965950,Dec,6,06:05:50,combo,kernel,,Out of Memory: Killed process 8985 (httpd).,Dec 6 06:05:50,Normal
20859,15292783,28965963,Dec,6,06:06:03,combo,kernel,,Out of Memory: Killed process 9004 (httpd).,Dec 6 06:06:03,Normal
20860,15292790,28965970,Dec,6,06:06:10,combo,kernel,,Out of Memory: Killed process 9005 (httpd).,Dec 6 06:06:10,Normal
20861,15292801,28965981,Dec,6,06:06:21,combo,kernel,,Out of Memory: Killed process 9006 (httpd).,Dec 6 06:06:21,Normal
20862,15293040,28966220,Dec,6,06:10:20,combo,kernel,,Out of Memory: Killed process 9007 (httpd).,Dec 6 06:10:20,Normal
20863,15293060,28966240,Dec,6,06:10:40,combo,kernel,,Out of Memory: Killed process 9008 (httpd).,Dec 6 06:10:40,Normal
20864,15293069,28966249,Dec,6,06:10:49,combo,kernel,,Out of Memory: Killed process 9017 (httpd).,Dec 6 06:10:49,Normal
20865,15293079,28966259,Dec,6,06:10:59,combo,kernel,,Out of Memory: Killed process 9013 (python).,Dec 6 06:10:59,Normal
20866,15293346,28966526,Dec,6,06:15:26,combo,kernel,,Out of Memory: Killed process 9018 (httpd).,Dec 6 06:15:26,Normal
20867,15293352,28966532,Dec,6,06:15:32,combo,kernel,,Out of Memory: Killed process 9019 (httpd).,Dec 6 06:15:32,Normal
20868,15293369,28966549,Dec,6,06:15:49,combo,kernel,,Out of Memory: Killed process 9029 (python).,Dec 6 06:15:49,Normal
20869,15293381,28966561,Dec,6,06:16:01,combo,kernel,,Out of Memory: Killed process 9030 (httpd).,Dec 6 06:16:01,Normal
20870,15293402,28966582,Dec,6,06:16:22,combo,kernel,,Out of Memory: Killed process 9031 (httpd).,Dec 6 06:16:22,Normal
20871,15293416,28966596,Dec,6,06:16:36,combo,kernel,,Out of Memory: Killed process 9032 (httpd).,Dec 6 06:16:36,Normal
20872,15293643,28966823,Dec,6,06:20:23,combo,kernel,,Out of Memory: Killed process 9033 (httpd).,Dec 6 06:20:23,Normal
20873,15293674,28966854,Dec,6,06:20:54,combo,kernel,,Out of Memory: Killed process 9034 (httpd).,Dec 6 06:20:54,Normal
20874,15293695,28966875,Dec,6,06:21:15,combo,kernel,,Out of Memory: Killed process 9052 (httpd).,Dec 6 06:21:15,Normal
20875,15293711,28966891,Dec,6,06:21:31,combo,kernel,,Out of Memory: Killed process 9053 (httpd).,Dec 6 06:21:31,Normal
20876,15293716,28966896,Dec,6,06:21:36,combo,kernel,,Out of Memory: Killed process 9054 (httpd).,Dec 6 06:21:36,Normal
20877,15293727,28966907,Dec,6,06:21:47,combo,kernel,,Out of Memory: Killed process 9048 (python).,Dec 6 06:21:47,Normal
20878,15293741,28966921,Dec,6,06:22:01,combo,kernel,,Out of Memory: Killed process 9055 (httpd).,Dec 6 06:22:01,Normal
20879,15293763,28966943,Dec,6,06:22:23,combo,kernel,,Out of Memory: Killed process 9056 (httpd).,Dec 6 06:22:23,Normal
20880,15293773,28966953,Dec,6,06:22:33,combo,kernel,,Out of Memory: Killed process 9057 (httpd).,Dec 6 06:22:33,Normal
20881,15293777,28966957,Dec,6,06:22:37,combo,kernel,,Out of Memory: Killed process 9058 (httpd).,Dec 6 06:22:37,Normal
20882,15293782,28966962,Dec,6,06:22:42,combo,kernel,,Out of Memory: Killed process 9059 (httpd).,Dec 6 06:22:42,Normal
20883,15293793,28966973,Dec,6,06:22:53,combo,kernel,,Out of Memory: Killed process 8494 (sendmail).,Dec 6 06:22:53,Normal
20884,15293804,28966984,Dec,6,06:23:04,combo,kernel,,Out of Memory: Killed process 8874 (sendmail).,Dec 6 06:23:04,Normal
20885,15296640,28969820,Dec,6,07:10:20,combo,kernel,,Out of Memory: Killed process 9062 (httpd).,Dec 6 07:10:20,Normal
20886,15296946,28970126,Dec,6,07:15:26,combo,kernel,,Out of Memory: Killed process 9061 (httpd).,Dec 6 07:15:26,Normal
20887,15296957,28970137,Dec,6,07:15:37,combo,kernel,,Out of Memory: Killed process 9063 (httpd).,Dec 6 07:15:37,Normal
20888,15297559,28970739,Dec,6,07:25:39,combo,kernel,,Out of Memory: Killed process 9156 (httpd).,Dec 6 07:25:39,Normal
20889,15297851,28971031,Dec,6,07:30:31,combo,kernel,,Out of Memory: Killed process 9157 (httpd).,Dec 6 07:30:31,Normal
20890,15297868,28971048,Dec,6,07:30:48,combo,kernel,,Out of Memory: Killed process 9187 (httpd).,Dec 6 07:30:48,Normal
20891,15297896,28971076,Dec,6,07:31:16,combo,kernel,,Out of Memory: Killed process 9199 (httpd).,Dec 6 07:31:16,Normal
20892,15297917,28971097,Dec,6,07:31:37,combo,kernel,,Out of Memory: Killed process 9200 (httpd).,Dec 6 07:31:37,Normal
20893,15298137,28971317,Dec,6,07:35:17,combo,kernel,,Out of Memory: Killed process 9201 (httpd).,Dec 6 07:35:17,Normal
20894,15298147,28971327,Dec,6,07:35:27,combo,kernel,,Out of Memory: Killed process 9202 (httpd).,Dec 6 07:35:27,Normal
20895,15298172,28971352,Dec,6,07:35:52,combo,kernel,,Out of Memory: Killed process 9211 (httpd).,Dec 6 07:35:52,Normal
20896,15298180,28971360,Dec,6,07:36:00,combo,kernel,,Out of Memory: Killed process 9212 (httpd).,Dec 6 07:36:00,Normal
20897,15298198,28971378,Dec,6,07:36:18,combo,kernel,,Out of Memory: Killed process 9209 (python).,Dec 6 07:36:18,Normal
20898,15298438,28971618,Dec,6,07:40:18,combo,kernel,,Out of Memory: Killed process 9213 (httpd).,Dec 6 07:40:18,Normal
20899,15298443,28971623,Dec,6,07:40:23,combo,kernel,,Out of Memory: Killed process 9214 (httpd).,Dec 6 07:40:23,Normal
20900,15298455,28971635,Dec,6,07:40:35,combo,kernel,,Out of Memory: Killed process 9218 (python).,Dec 6 07:40:35,Normal
20901,15298736,28971916,Dec,6,07:45:16,combo,kernel,,Out of Memory: Killed process 9222 (httpd).,Dec 6 07:45:16,Normal
20902,15298744,28971924,Dec,6,07:45:24,combo,kernel,,Out of Memory: Killed process 9223 (httpd).,Dec 6 07:45:24,Normal
20903,15298762,28971942,Dec,6,07:45:42,combo,kernel,,Out of Memory: Killed process 9228 (httpd).,Dec 6 07:45:42,Normal
20904,15298767,28971947,Dec,6,07:45:47,combo,kernel,,Out of Memory: Killed process 9229 (httpd).,Dec 6 07:45:47,Normal
20905,15298777,28971957,Dec,6,07:45:57,combo,kernel,,Out of Memory: Killed process 9227 (python).,Dec 6 07:45:57,Normal
20906,15299038,28972218,Dec,6,07:50:18,combo,kernel,,Out of Memory: Killed process 9230 (httpd).,Dec 6 07:50:18,Normal
20907,15299054,28972234,Dec,6,07:50:34,combo,kernel,,Out of Memory: Killed process 9231 (httpd).,Dec 6 07:50:34,Normal
20908,15299057,28972237,Dec,6,07:50:37,combo,kernel,,Out of Memory: Killed process 9235 (python).,Dec 6 07:50:37,Normal
20909,15299341,28972521,Dec,6,07:55:21,combo,kernel,,Out of Memory: Killed process 9239 (httpd).,Dec 6 07:55:21,Normal
20910,15299348,28972528,Dec,6,07:55:28,combo,kernel,,Out of Memory: Killed process 9240 (httpd).,Dec 6 07:55:28,Normal
20911,15299354,28972534,Dec,6,07:55:34,combo,kernel,,Out of Memory: Killed process 9243 (python).,Dec 6 07:55:34,Normal
20912,15299648,28972828,Dec,6,08:00:28,combo,kernel,,Out of Memory: Killed process 9245 (httpd).,Dec 6 08:00:28,Normal
20913,15299659,28972839,Dec,6,08:00:39,combo,kernel,,Out of Memory: Killed process 9246 (httpd).,Dec 6 08:00:39,Normal
20914,15299672,28972852,Dec,6,08:00:52,combo,kernel,,Out of Memory: Killed process 9252 (python).,Dec 6 08:00:52,Normal
20915,15299713,28972893,Dec,6,08:01:33,combo,kernel,,Out of Memory: Killed process 9257 (httpd).,Dec 6 08:01:33,Normal
20916,15299718,28972898,Dec,6,08:01:38,combo,kernel,,Out of Memory: Killed process 9258 (httpd).,Dec 6 08:01:38,Normal
20917,15299727,28972907,Dec,6,08:01:47,combo,kernel,,Out of Memory: Killed process 9255 (python).,Dec 6 08:01:47,Normal
20918,15299748,28972928,Dec,6,08:02:08,combo,kernel,,Out of Memory: Killed process 9263 (httpd).,Dec 6 08:02:08,Normal
20919,15299758,28972938,Dec,6,08:02:18,combo,kernel,,Out of Memory: Killed process 9264 (httpd).,Dec 6 08:02:18,Normal
20920,15299774,28972954,Dec,6,08:02:34,combo,kernel,,Out of Memory: Killed process 9265 (httpd).,Dec 6 08:02:34,Normal
20921,15299780,28972960,Dec,6,08:02:40,combo,kernel,,Out of Memory: Killed process 9266 (httpd).,Dec 6 08:02:40,Normal
20922,15299785,28972965,Dec,6,08:02:45,combo,kernel,,Out of Memory: Killed process 9268 (httpd).,Dec 6 08:02:45,Normal
20923,15299792,28972972,Dec,6,08:02:52,combo,kernel,,Out of Memory: Killed process 9269 (httpd).,Dec 6 08:02:52,Normal
20924,15299799,28972979,Dec,6,08:02:59,combo,kernel,,Out of Memory: Killed process 9009 (sendmail).,Dec 6 08:02:59,Normal
20925,15299805,28972985,Dec,6,08:03:05,combo,kernel,,Out of Memory: Killed process 9139 (sendmail).,Dec 6 08:03:05,Normal
20926,15299809,28972989,Dec,6,08:03:09,combo,kernel,,Out of Memory: Killed process 9254 (mrtg).,Dec 6 08:03:09,Normal
20927,15303240,28976420,Dec,6,09:00:20,combo,kernel,,Out of Memory: Killed process 9279 (httpd).,Dec 6 09:00:20,Normal
20928,15303246,28976426,Dec,6,09:00:26,combo,kernel,,Out of Memory: Killed process 9280 (httpd).,Dec 6 09:00:26,Normal
20929,15303260,28976440,Dec,6,09:00:40,combo,kernel,,Out of Memory: Killed process 9281 (httpd).,Dec 6 09:00:40,Normal
20930,15303271,28976451,Dec,6,09:00:51,combo,kernel,,Out of Memory: Killed process 9368 (python).,Dec 6 09:00:51,Normal
20931,15304144,28977324,Dec,6,09:15:24,combo,kernel,,Out of Memory: Killed process 9372 (httpd).,Dec 6 09:15:24,Normal
20932,15304455,28977635,Dec,6,09:20:35,combo,kernel,,Out of Memory: Killed process 9373 (httpd).,Dec 6 09:20:35,Normal
20933,15304464,28977644,Dec,6,09:20:44,combo,kernel,,Out of Memory: Killed process 9416 (httpd).,Dec 6 09:20:44,Normal
20934,15304750,28977930,Dec,6,09:25:30,combo,kernel,,Out of Memory: Killed process 9432 (httpd).,Dec 6 09:25:30,Normal
20935,15304764,28977944,Dec,6,09:25:44,combo,kernel,,Out of Memory: Killed process 9433 (httpd).,Dec 6 09:25:44,Normal
20936,15304768,28977948,Dec,6,09:25:48,combo,kernel,,Out of Memory: Killed process 9442 (python).,Dec 6 09:25:48,Normal
20937,15305047,28978227,Dec,6,09:30:27,combo,kernel,,Out of Memory: Killed process 9444 (httpd).,Dec 6 09:30:27,Normal
20938,15305060,28978240,Dec,6,09:30:40,combo,kernel,,Out of Memory: Killed process 9445 (httpd).,Dec 6 09:30:40,Normal
20939,15305083,28978263,Dec,6,09:31:03,combo,kernel,,Out of Memory: Killed process 9462 (httpd).,Dec 6 09:31:03,Normal
20940,15305101,28978281,Dec,6,09:31:21,combo,kernel,,Out of Memory: Killed process 9463 (httpd).,Dec 6 09:31:21,Normal
20941,15305112,28978292,Dec,6,09:31:32,combo,kernel,,Out of Memory: Killed process 9459 (python).,Dec 6 09:31:32,Normal
20942,15305344,28978524,Dec,6,09:35:24,combo,kernel,,Out of Memory: Killed process 9464 (httpd).,Dec 6 09:35:24,Normal
20943,15305351,28978531,Dec,6,09:35:31,combo,kernel,,Out of Memory: Killed process 9465 (httpd).,Dec 6 09:35:31,Normal
20944,15305367,28978547,Dec,6,09:35:47,combo,kernel,,Out of Memory: Killed process 9474 (python).,Dec 6 09:35:47,Normal
20945,15305934,28979114,Dec,6,09:45:14,combo,kernel,,Out of Memory: Killed process 9476 (httpd).,Dec 6 09:45:14,Normal
20946,15305956,28979136,Dec,6,09:45:36,combo,kernel,,Out of Memory: Killed process 9477 (httpd).,Dec 6 09:45:36,Normal
20947,15305964,28979144,Dec,6,09:45:44,combo,kernel,,Out of Memory: Killed process 9491 (python).,Dec 6 09:45:44,Normal
20948,15306239,28979419,Dec,6,09:50:19,combo,kernel,,Out of Memory: Killed process 9492 (httpd).,Dec 6 09:50:19,Normal
20949,15306254,28979434,Dec,6,09:50:34,combo,kernel,,Out of Memory: Killed process 9493 (httpd).,Dec 6 09:50:34,Normal
20950,15306262,28979442,Dec,6,09:50:42,combo,kernel,,Out of Memory: Killed process 9498 (python).,Dec 6 09:50:42,Normal
20951,15306537,28979717,Dec,6,09:55:17,combo,kernel,,Out of Memory: Killed process 9502 (httpd).,Dec 6 09:55:17,Normal
20952,15306549,28979729,Dec,6,09:55:29,combo,kernel,,Out of Memory: Killed process 9503 (httpd).,Dec 6 09:55:29,Normal
20953,15306558,28979738,Dec,6,09:55:38,combo,kernel,,Out of Memory: Killed process 9508 (httpd).,Dec 6 09:55:38,Normal
20954,15306564,28979744,Dec,6,09:55:44,combo,kernel,,Out of Memory: Killed process 9506 (python).,Dec 6 09:55:44,Normal
20955,15306840,28980020,Dec,6,10:00:20,combo,kernel,,Out of Memory: Killed process 9509 (httpd).,Dec 6 10:00:20,Normal
20956,15306851,28980031,Dec,6,10:00:31,combo,kernel,,Out of Memory: Killed process 9510 (httpd).,Dec 6 10:00:31,Normal
20957,15306859,28980039,Dec,6,10:00:39,combo,kernel,,Out of Memory: Killed process 9515 (python).,Dec 6 10:00:39,Normal
20958,15306869,28980049,Dec,6,10:00:49,combo,kernel,,Out of Memory: Killed process 9519 (httpd).,Dec 6 10:00:49,Normal
20959,15307148,28980328,Dec,6,10:05:28,combo,kernel,,Out of Memory: Killed process 9520 (httpd).,Dec 6 10:05:28,Normal
20960,15307157,28980337,Dec,6,10:05:37,combo,kernel,,Out of Memory: Killed process 9521 (httpd).,Dec 6 10:05:37,Normal
20961,15307165,28980345,Dec,6,10:05:45,combo,kernel,,Out of Memory: Killed process 9539 (python).,Dec 6 10:05:45,Normal
20962,15307182,28980362,Dec,6,10:06:02,combo,kernel,,Out of Memory: Killed process 9540 (httpd).,Dec 6 10:06:02,Normal
20963,15307444,28980624,Dec,6,10:10:24,combo,kernel,,Out of Memory: Killed process 9541 (httpd).,Dec 6 10:10:24,Normal
20964,15307449,28980629,Dec,6,10:10:29,combo,kernel,,Out of Memory: Killed process 9542 (httpd).,Dec 6 10:10:29,Normal
20965,15307456,28980636,Dec,6,10:10:36,combo,kernel,,Out of Memory: Killed process 9548 (python).,Dec 6 10:10:36,Normal
20966,15307749,28980929,Dec,6,10:15:29,combo,kernel,,Out of Memory: Killed process 9554 (httpd).,Dec 6 10:15:29,Normal
20967,15307755,28980935,Dec,6,10:15:35,combo,kernel,,Out of Memory: Killed process 9555 (httpd).,Dec 6 10:15:35,Normal
20968,15307766,28980946,Dec,6,10:15:46,combo,kernel,,Out of Memory: Killed process 9573 (python).,Dec 6 10:15:46,Normal
20969,15307779,28980959,Dec,6,10:15:59,combo,kernel,,Out of Memory: Killed process 9574 (httpd).,Dec 6 10:15:59,Normal
20970,15307790,28980970,Dec,6,10:16:10,combo,kernel,,Out of Memory: Killed process 9575 (httpd).,Dec 6 10:16:10,Normal
20971,15307797,28980977,Dec,6,10:16:17,combo,kernel,,Out of Memory: Killed process 9576 (httpd).,Dec 6 10:16:17,Normal
20972,15307804,28980984,Dec,6,10:16:24,combo,kernel,,Out of Memory: Killed process 9577 (httpd).,Dec 6 10:16:24,Normal
20973,15307816,28980996,Dec,6,10:16:36,combo,kernel,,Out of Memory: Killed process 9572 (mrtg).,Dec 6 10:16:36,Normal
20974,15307823,28981003,Dec,6,10:16:43,combo,kernel,,Out of Memory: Killed process 9286 (sendmail).,Dec 6 10:16:43,Normal
20975,15308047,28981227,Dec,6,10:20:27,combo,kernel,,Out of Memory: Killed process 9580 (httpd).,Dec 6 10:20:27,Normal
20976,15308339,28981519,Dec,6,10:25:19,combo,kernel,,Out of Memory: Killed process 9581 (httpd).,Dec 6 10:25:19,Normal
20977,15308348,28981528,Dec,6,10:25:28,combo,kernel,,Out of Memory: Killed process 9582 (httpd).,Dec 6 10:25:28,Normal
20978,15308641,28981821,Dec,6,10:30:21,combo,kernel,,Out of Memory: Killed process 9612 (httpd).,Dec 6 10:30:21,Normal
20979,15308647,28981827,Dec,6,10:30:27,combo,kernel,,Out of Memory: Killed process 9613 (httpd).,Dec 6 10:30:27,Normal
20980,15308941,28982121,Dec,6,10:35:21,combo,kernel,,Out of Memory: Killed process 9627 (httpd).,Dec 6 10:35:21,Normal
20981,15308948,28982128,Dec,6,10:35:28,combo,kernel,,Out of Memory: Killed process 9628 (httpd).,Dec 6 10:35:28,Normal
20982,15308960,28982140,Dec,6,10:35:40,combo,kernel,,Out of Memory: Killed process 9635 (python).,Dec 6 10:35:40,Normal
20983,15309234,28982414,Dec,6,10:40:14,combo,kernel,,Out of Memory: Killed process 9637 (httpd).,Dec 6 10:40:14,Normal
20984,15309254,28982434,Dec,6,10:40:34,combo,kernel,,Out of Memory: Killed process 9638 (httpd).,Dec 6 10:40:34,Normal
20985,15309261,28982441,Dec,6,10:40:41,combo,kernel,,Out of Memory: Killed process 9654 (httpd).,Dec 6 10:40:41,Normal
20986,15309271,28982451,Dec,6,10:40:51,combo,kernel,,Out of Memory: Killed process 9652 (python).,Dec 6 10:40:51,Normal
20987,15309540,28982720,Dec,6,10:45:20,combo,kernel,,Out of Memory: Killed process 9655 (httpd).,Dec 6 10:45:20,Normal
20988,15309545,28982725,Dec,6,10:45:25,combo,kernel,,Out of Memory: Killed process 9656 (httpd).,Dec 6 10:45:25,Normal
20989,15309554,28982734,Dec,6,10:45:34,combo,kernel,,Out of Memory: Killed process 9660 (python).,Dec 6 10:45:34,Normal
20990,15309840,28983020,Dec,6,10:50:20,combo,kernel,,Out of Memory: Killed process 9662 (httpd).,Dec 6 10:50:20,Normal
20991,15309847,28983027,Dec,6,10:50:27,combo,kernel,,Out of Memory: Killed process 9663 (httpd).,Dec 6 10:50:27,Normal
20992,15309852,28983032,Dec,6,10:50:32,combo,kernel,,Out of Memory: Killed process 9670 (python).,Dec 6 10:50:32,Normal
20993,15310142,28983322,Dec,6,10:55:22,combo,kernel,,Out of Memory: Killed process 9674 (httpd).,Dec 6 10:55:22,Normal
20994,15310150,28983330,Dec,6,10:55:30,combo,kernel,,Out of Memory: Killed process 9673 (httpd).,Dec 6 10:55:30,Normal
20995,15310159,28983339,Dec,6,10:55:39,combo,kernel,,Out of Memory: Killed process 9675 (httpd).,Dec 6 10:55:39,Normal
20996,15310167,28983347,Dec,6,10:55:47,combo,kernel,,Out of Memory: Killed process 9678 (python).,Dec 6 10:55:47,Normal
20997,15310437,28983617,Dec,6,11:00:17,combo,kernel,,Out of Memory: Killed process 9680 (httpd).,Dec 6 11:00:17,Normal
20998,15310441,28983621,Dec,6,11:00:21,combo,kernel,,Out of Memory: Killed process 9681 (httpd).,Dec 6 11:00:21,Normal
20999,15310447,28983627,Dec,6,11:00:27,combo,kernel,,Out of Memory: Killed process 9685 (python).,Dec 6 11:00:27,Normal
21000,15310737,28983917,Dec,6,11:05:17,combo,kernel,,Out of Memory: Killed process 9689 (httpd).,Dec 6 11:05:17,Normal
21001,15310742,28983922,Dec,6,11:05:22,combo,kernel,,Out of Memory: Killed process 9690 (httpd).,Dec 6 11:05:22,Normal
21002,15310748,28983928,Dec,6,11:05:28,combo,kernel,,Out of Memory: Killed process 9708 (python).,Dec 6 11:05:28,Normal
21003,15310761,28983941,Dec,6,11:05:41,combo,kernel,,Out of Memory: Killed process 9710 (httpd).,Dec 6 11:05:41,Normal
21004,15311045,28984225,Dec,6,11:10:25,combo,kernel,,Out of Memory: Killed process 9711 (httpd).,Dec 6 11:10:25,Normal
21005,15311053,28984233,Dec,6,11:10:33,combo,kernel,,Out of Memory: Killed process 9712 (httpd).,Dec 6 11:10:33,Normal
21006,15311062,28984242,Dec,6,11:10:42,combo,kernel,,Out of Memory: Killed process 9721 (python).,Dec 6 11:10:42,Normal
21007,15311080,28984260,Dec,6,11:11:00,combo,kernel,,Out of Memory: Killed process 9724 (httpd).,Dec 6 11:11:00,Normal
21008,15311093,28984273,Dec,6,11:11:13,combo,kernel,,Out of Memory: Killed process 9725 (httpd).,Dec 6 11:11:13,Normal
21009,15311108,28984288,Dec,6,11:11:28,combo,kernel,,Out of Memory: Killed process 9726 (httpd).,Dec 6 11:11:28,Normal
21010,15311118,28984298,Dec,6,11:11:38,combo,kernel,,Out of Memory: Killed process 9727 (httpd).,Dec 6 11:11:38,Normal
21011,15311132,28984312,Dec,6,11:11:52,combo,kernel,,Out of Memory: Killed process 9393 (sendmail).,Dec 6 11:11:52,Normal
21012,15311650,28984830,Dec,6,11:20:30,combo,kernel,,Out of Memory: Killed process 9728 (httpd).,Dec 6 11:20:30,Normal
21013,15311946,28985126,Dec,6,11:25:26,combo,kernel,,Out of Memory: Killed process 9729 (httpd).,Dec 6 11:25:26,Normal
21014,15312243,28985423,Dec,6,11:30:23,combo,kernel,,Out of Memory: Killed process 9730 (httpd).,Dec 6 11:30:23,Normal
21015,15312248,28985428,Dec,6,11:30:28,combo,kernel,,Out of Memory: Killed process 9771 (httpd).,Dec 6 11:30:28,Normal
21016,15312253,28985433,Dec,6,11:30:33,combo,kernel,,Out of Memory: Killed process 9786 (python).,Dec 6 11:30:33,Normal
21017,15312544,28985724,Dec,6,11:35:24,combo,kernel,,Out of Memory: Killed process 9790 (httpd).,Dec 6 11:35:24,Normal
21018,15312549,28985729,Dec,6,11:35:29,combo,kernel,,Out of Memory: Killed process 9791 (httpd).,Dec 6 11:35:29,Normal
21019,15312555,28985735,Dec,6,11:35:35,combo,kernel,,Out of Memory: Killed process 9803 (python).,Dec 6 11:35:35,Normal
21020,15312837,28986017,Dec,6,11:40:17,combo,kernel,,Out of Memory: Killed process 9804 (httpd).,Dec 6 11:40:17,Normal
21021,15312846,28986026,Dec,6,11:40:26,combo,kernel,,Out of Memory: Killed process 9805 (httpd).,Dec 6 11:40:26,Normal
21022,15312854,28986034,Dec,6,11:40:34,combo,kernel,,Out of Memory: Killed process 9813 (python).,Dec 6 11:40:34,Normal
21023,15312868,28986048,Dec,6,11:40:48,combo,kernel,,Out of Memory: Killed process 9817 (httpd).,Dec 6 11:40:48,Normal
21024,15313137,28986317,Dec,6,11:45:17,combo,kernel,,Out of Memory: Killed process 9818 (httpd).,Dec 6 11:45:17,Normal
21025,15313143,28986323,Dec,6,11:45:23,combo,kernel,,Out of Memory: Killed process 9819 (httpd).,Dec 6 11:45:23,Normal
21026,15313168,28986348,Dec,6,11:45:48,combo,kernel,,Out of Memory: Killed process 9825 (httpd).,Dec 6 11:45:48,Normal
21027,15313179,28986359,Dec,6,11:45:59,combo,kernel,,Out of Memory: Killed process 9826 (httpd).,Dec 6 11:45:59,Normal
21028,15313188,28986368,Dec,6,11:46:08,combo,kernel,,Out of Memory: Killed process 9824 (python).,Dec 6 11:46:08,Normal
21029,15313455,28986635,Dec,6,11:50:35,combo,kernel,,Out of Memory: Killed process 9827 (httpd).,Dec 6 11:50:35,Normal
21030,15313460,28986640,Dec,6,11:50:40,combo,kernel,,Out of Memory: Killed process 9828 (httpd).,Dec 6 11:50:40,Normal
21031,15313467,28986647,Dec,6,11:50:47,combo,kernel,,Out of Memory: Killed process 9834 (python).,Dec 6 11:50:47,Normal
21032,15313480,28986660,Dec,6,11:51:00,combo,kernel,,Out of Memory: Killed process 9837 (httpd).,Dec 6 11:51:00,Normal
21033,15313734,28986914,Dec,6,11:55:14,combo,kernel,,Out of Memory: Killed process 9838 (httpd).,Dec 6 11:55:14,Normal
21034,15313739,28986919,Dec,6,11:55:19,combo,kernel,,Out of Memory: Killed process 9839 (httpd).,Dec 6 11:55:19,Normal
21035,15313744,28986924,Dec,6,11:55:24,combo,kernel,,Out of Memory: Killed process 9845 (python).,Dec 6 11:55:24,Normal
21036,15314034,28987214,Dec,6,12:00:14,combo,kernel,,Out of Memory: Killed process 9846 (httpd).,Dec 6 12:00:14,Normal
21037,15314041,28987221,Dec,6,12:00:21,combo,kernel,,Out of Memory: Killed process 9847 (httpd).,Dec 6 12:00:21,Normal
21038,15314063,28987243,Dec,6,12:00:43,combo,kernel,,Out of Memory: Killed process 9858 (httpd).,Dec 6 12:00:43,Normal
21039,15314070,28987250,Dec,6,12:00:50,combo,kernel,,Out of Memory: Killed process 9859 (httpd).,Dec 6 12:00:50,Normal
21040,15314075,28987255,Dec,6,12:00:55,combo,kernel,,Out of Memory: Killed process 9855 (python).,Dec 6 12:00:55,Normal
21041,15314099,28987279,Dec,6,12:01:19,combo,kernel,,Out of Memory: Killed process 9860 (httpd).,Dec 6 12:01:19,Normal
21042,15314107,28987287,Dec,6,12:01:27,combo,kernel,,Out of Memory: Killed process 9861 (httpd).,Dec 6 12:01:27,Normal
21043,15314113,28987293,Dec,6,12:01:33,combo,kernel,,Out of Memory: Killed process 9856 (python).,Dec 6 12:01:33,Normal
21044,15314127,28987307,Dec,6,12:01:47,combo,kernel,,Out of Memory: Killed process 9866 (httpd).,Dec 6 12:01:47,Normal
21045,15314139,28987319,Dec,6,12:01:59,combo,kernel,,Out of Memory: Killed process 9867 (httpd).,Dec 6 12:01:59,Normal
21046,15314150,28987330,Dec,6,12:02:10,combo,kernel,,Out of Memory: Killed process 9868 (httpd).,Dec 6 12:02:10,Normal
21047,15314166,28987346,Dec,6,12:02:26,combo,kernel,,Out of Memory: Killed process 9869 (httpd).,Dec 6 12:02:26,Normal
21048,15314172,28987352,Dec,6,12:02:32,combo,kernel,,Out of Memory: Killed process 9544 (sendmail).,Dec 6 12:02:32,Normal
21049,15314180,28987360,Dec,6,12:02:40,combo,kernel,,Out of Memory: Killed process 9715 (sendmail).,Dec 6 12:02:40,Normal
21050,15314181,28987361,Dec,6,12:02:41,combo,kernel,,Out of Memory: Killed process 9853 (mrtg).,Dec 6 12:02:41,Normal
21051,15314186,28987366,Dec,6,12:02:46,combo,kernel,,Out of Memory: Killed process 9864 (diskcheck).,Dec 6 12:02:46,Normal
21052,15315221,28988401,Dec,6,12:20:01,combo,gpm,2068.0,*** info [mice.c(1766)]:,Dec 6 12:20:01,Normal
21053,15315222,28988402,Dec,6,12:20:02,combo,gpm,2068.0,imps2: Auto-detected intellimouse PS/2,Dec 6 12:20:02,Normal
21054,15315223,28988403,Dec,6,12:20:03,combo,gdm,2402.0,Master rebooting...,Dec 6 12:20:03,Normal
21055,15315228,28988408,Dec,6,12:20:08,combo,shutdown,,shutting down for system reboot,Dec 6 12:20:08,Anomaly
21057,15315231,28988411,Dec,6,12:20:11,combo,udev,9932.0,removing device node '/udev/vcs7',Dec 6 12:20:11,Normal
21056,15315231,28988411,Dec,6,12:20:11,combo,udev,9933.0,removing device node '/udev/vcsa7',Dec 6 12:20:11,Normal
21062,15315234,28988414,Dec,6,12:20:14,combo,udev,10000.0,removing device node '/udev/vcs3',Dec 6 12:20:14,Normal
21061,15315234,28988414,Dec,6,12:20:14,combo,udev,10012.0,removing device node '/udev/vcs2',Dec 6 12:20:14,Normal
21060,15315234,28988414,Dec,6,12:20:14,combo,udev,9969.0,removing device node '/udev/vcs1',Dec 6 12:20:14,Normal
21059,15315234,28988414,Dec,6,12:20:14,combo,udev,10001.0,removing device node '/udev/vcsa3',Dec 6 12:20:14,Normal
21058,15315234,28988414,Dec,6,12:20:14,combo,init,,Switching to runlevel: 6,Dec 6 12:20:14,Normal
21065,15315234,28988414,Dec,6,12:20:14,combo,udev,10035.0,removing device node '/udev/vcs4',Dec 6 12:20:14,Normal
21063,15315234,28988414,Dec,6,12:20:14,combo,udev,9999.0,removing device node '/udev/vcsa1',Dec 6 12:20:14,Normal
21064,15315234,28988414,Dec,6,12:20:14,combo,udev,10026.0,removing device node '/udev/vcsa2',Dec 6 12:20:14,Normal
21066,15315235,28988415,Dec,6,12:20:15,combo,udev,10044.0,removing device node '/udev/vcsa4',Dec 6 12:20:15,Normal
21067,15315235,28988415,Dec,6,12:20:15,combo,udev,10049.0,removing device node '/udev/vcs5',Dec 6 12:20:15,Normal
21072,15315235,28988415,Dec,6,12:20:15,combo,udev,10082.0,creating device node '/udev/vcs1',Dec 6 12:20:15,Normal
21071,15315235,28988415,Dec,6,12:20:15,combo,udev,10089.0,creating device node '/udev/vcsa1',Dec 6 12:20:15,Normal
21069,15315235,28988415,Dec,6,12:20:15,combo,udev,10054.0,removing device node '/udev/vcs6',Dec 6 12:20:15,Normal
21068,15315235,28988415,Dec,6,12:20:15,combo,udev,10052.0,removing device node '/udev/vcsa5',Dec 6 12:20:15,Normal
21070,15315235,28988415,Dec,6,12:20:15,combo,udev,10065.0,removing device node '/udev/vcsa6',Dec 6 12:20:15,Normal
21073,15315240,28988420,Dec,6,12:20:20,combo,messagebus,,messagebus shutdown failed,Dec 6 12:20:20,Anomaly
21074,15315243,28988423,Dec,6,12:20:23,combo,atd,,atd shutdown succeeded,Dec 6 12:20:23,Normal
21075,15315244,28988424,Dec,6,12:20:24,combo,privoxy,,privoxy shutdown succeeded,Dec 6 12:20:24,Normal
21076,15315248,28988428,Dec,6,12:20:28,combo,cups,,cupsd shutdown succeeded,Dec 6 12:20:28,Normal
21078,15315249,28988429,Dec,6,12:20:29,combo,FreeWnn,,jserver shutdown failed,Dec 6 12:20:29,Anomaly
21077,15315249,28988429,Dec,6,12:20:29,combo,xfs,,xfs shutdown failed,Dec 6 12:20:29,Anomaly
21079,15315251,28988431,Dec,6,12:20:31,combo,cannaserver,2102.0,irw_killserver:cannaserver end,Dec 6 12:20:31,Normal
21081,15315251,28988431,Dec,6,12:20:31,combo,mysqld,,Stopping MySQL: failed,Dec 6 12:20:31,Anomaly
21080,15315251,28988431,Dec,6,12:20:31,combo,canna,,Stopping Canna server: succeeded,Dec 6 12:20:31,Normal
21082,15315253,28988433,Dec,6,12:20:33,combo,gpm,,gpm shutdown succeeded,Dec 6 12:20:33,Normal
21083,15315257,28988437,Dec,6,12:20:37,combo,httpd,,httpd shutdown succeeded,Dec 6 12:20:37,Normal
21084,15315259,28988439,Dec,6,12:20:39,combo,squid,,Stopping squid:,Dec 6 12:20:39,Normal
21085,15315263,28988443,Dec,6,12:20:43,combo,squid,,.,Dec 6 12:20:43,Normal
21086,15315265,28988445,Dec,6,12:20:45,combo,squid,,.,Dec 6 12:20:45,Normal
21087,15315265,28988445,Dec,6,12:20:45,combo,squid,,^[[60G[ ^[[0;32mOK,Dec 6 12:20:45,Normal
21090,15315265,28988445,Dec,6,12:20:45,combo,sshd,,sshd -TERM succeeded,Dec 6 12:20:45,Normal
21089,15315265,28988445,Dec,6,12:20:45,combo,rc,,Stopping squid: succeeded,Dec 6 12:20:45,Normal
21091,15315265,28988445,Dec,6,12:20:45,combo,squid,2261.0,Squid Parent: child process 2263 exited with status 0,Dec 6 12:20:45,Normal
21093,15315270,28988450,Dec,6,12:20:50,combo,sendmail,,sm-client shutdown failed,Dec 6 12:20:50,Anomaly
21092,15315270,28988450,Dec,6,12:20:50,combo,sendmail,,sendmail shutdown succeeded,Dec 6 12:20:50,Normal
21094,15315281,28988461,Dec,6,12:21:01,combo,spamassassin,,spamd shutdown succeeded,Dec 6 12:21:01,Normal
21097,15315283,28988463,Dec,6,12:21:03,combo,smartd,,smartd shutdown succeeded,Dec 6 12:21:03,Normal
21095,15315283,28988463,Dec,6,12:21:03,combo,smartd,1757.0,smartd received signal 15: Terminated,Dec 6 12:21:03,Normal
21096,15315283,28988463,Dec,6,12:21:03,combo,smartd,1757.0,smartd is exiting (exit status 0),Dec 6 12:21:03,Normal
21098,15315290,28988470,Dec,6,12:21:10,combo,named,,named shutdown failed,Dec 6 12:21:10,Anomaly
21099,15315292,28988472,Dec,6,12:21:12,combo,snmpd,2287.0,Received TERM or STOP signal... shutting down...,Dec 6 12:21:12,Anomaly
21100,15315294,28988474,Dec,6,12:21:14,combo,snmpd,,snmpd shutdown succeeded,Dec 6 12:21:14,Normal
21101,15315295,28988475,Dec,6,12:21:15,combo,xinetd,2003.0,Exiting...,Dec 6 12:21:15,Normal
21102,15315296,28988476,Dec,6,12:21:16,combo,xinetd,,xinetd shutdown succeeded,Dec 6 12:21:16,Normal
21103,15315296,28988476,Dec,6,12:21:16,combo,crond,,crond shutdown succeeded,Dec 6 12:21:16,Normal
21104,15315297,28988477,Dec,6,12:21:17,combo,apmd,1717.0,Exiting,Dec 6 12:21:17,Normal
21105,15315300,28988480,Dec,6,12:21:20,combo,apmd,,apmd shutdown succeeded,Dec 6 12:21:20,Normal
21106,15315300,28988480,Dec,6,12:21:20,combo,ntpd,2304.0,ntpd exiting on signal 15,Dec 6 12:21:20,Normal
21109,15315301,28988481,Dec,6,12:21:21,combo,dd,,1+0 records out,Dec 6 12:21:21,Normal
21107,15315301,28988481,Dec,6,12:21:21,combo,ntpd,,ntpd shutdown succeeded,Dec 6 12:21:21,Normal
21110,15315301,28988481,Dec,6,12:21:21,combo,random,,Saving random seed: succeeded,Dec 6 12:21:21,Normal
21108,15315301,28988481,Dec,6,12:21:21,combo,dd,,1+0 records in,Dec 6 12:21:21,Normal
21112,15315301,28988481,Dec,6,12:21:21,combo,portmap,,portmap shutdown failed,Dec 6 12:21:21,Anomaly
21111,15315301,28988481,Dec,6,12:21:21,combo,nfslock,,rpc.statd shutdown failed,Dec 6 12:21:21,Anomaly
21114,15315302,28988482,Dec,6,12:21:22,combo,kernel,,Kernel log daemon terminating.,Dec 6 12:21:22,Normal
21113,15315302,28988482,Dec,6,12:21:22,combo,kernel,,Kernel logging (proc) stopped.,Dec 6 12:21:22,Normal
21115,15315306,28988486,Dec,6,12:21:26,combo,syslog,,klogd shutdown succeeded,Dec 6 12:21:26,Normal
21195,15315394,28988574,Dec,6,12:22:54,combo,network,,Setting network parameters: succeeded,Dec 6 12:22:54,Normal
21189,15315394,28988574,Dec,6,12:22:54,combo,sysctl,,net.ipv4.conf.default.rp_filter = 1,Dec 6 12:22:54,Normal
21191,15315394,28988574,Dec,6,12:22:54,combo,sysctl,,kernel.sysrq = 0,Dec 6 12:22:54,Normal
21198,15315394,28988574,Dec,6,12:22:54,combo,network,,Bringing up loopback interface: succeeded,Dec 6 12:22:54,Normal
21193,15315394,28988574,Dec,6,12:22:54,combo,sysctl,,kernel.core_uses_pid = 1,Dec 6 12:22:54,Normal
21121,15315397,28988577,Dec,6,12:22:57,combo,kernel,,BIOS-provided physical RAM map:,Dec 6 12:22:57,Normal
21120,15315397,28988577,Dec,6,12:22:57,combo,kernel,,Linux version 2.6.5-1.358 (bhcompile@bugs.build.redhat.com) (gcc version 3.3.3 20040412 (Red Hat Linux 3.3.3-7)) #1 Sat May 8 09:04:50 EDT 2004,Dec 6 12:22:57,Anomaly
21139,15315397,28988577,Dec,6,12:22:57,combo,kernel,,Built 1 zonelists,Dec 6 12:22:57,Normal
21140,15315397,28988577,Dec,6,12:22:57,combo,kernel,,Kernel command line: ro root=LABEL=/ rhgb quiet,Dec 6 12:22:57,Normal
21141,15315397,28988577,Dec,6,12:22:57,combo,kernel,,mapped 4G/4G trampoline to ffff3000.,Dec 6 12:22:57,Normal
21143,15315397,28988577,Dec,6,12:22:57,combo,kernel,,"CPU 0 irqstacks, hard=02345000 soft=02344000",Dec 6 12:22:57,Normal
21142,15315397,28988577,Dec,6,12:22:57,combo,kernel,,Initializing CPU#0,Dec 6 12:22:57,Normal
21144,15315397,28988577,Dec,6,12:22:57,combo,kernel,,PID hash table entries: 512 (order 9: 4096 bytes),Dec 6 12:22:57,Normal
21145,15315397,28988577,Dec,6,12:22:57,combo,portmap,,portmap startup succeeded,Dec 6 12:22:57,Normal
21146,15315397,28988577,Dec,6,12:22:57,combo,kernel,,Detected 731.217 MHz processor.,Dec 6 12:22:57,Normal
21138,15315397,28988577,Dec,6,12:22:57,combo,kernel,,You can enable it with acpi=force,Dec 6 12:22:57,Normal
21125,15315397,28988577,Dec,6,12:22:57,combo,kernel,,BIOS-e820: 0000000007eae000 - 0000000008000000 (reserved),Dec 6 12:22:57,Normal
21124,15315397,28988577,Dec,6,12:22:57,combo,kernel,,BIOS-e820: 0000000000100000 - 0000000007eae000 (usable),Dec 6 12:22:57,Normal
21123,15315397,28988577,Dec,6,12:22:57,combo,kernel,,BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved),Dec 6 12:22:57,Normal
21122,15315397,28988577,Dec,6,12:22:57,combo,kernel,,BIOS-e820: 0000000000000000 - 00000000000a0000 (usable),Dec 6 12:22:57,Normal
21129,15315397,28988577,Dec,6,12:22:57,combo,kernel,,zapping low mappings.,Dec 6 12:22:57,Normal
21136,15315397,28988577,Dec,6,12:22:57,combo,kernel,,DMI 2.3 present.,Dec 6 12:22:57,Normal
21135,15315397,28988577,Dec,6,12:22:57,combo,kernel,,"HighMem zone: 0 pages, LIFO batch:1",Dec 6 12:22:57,Normal
21119,15315397,28988577,Dec,6,12:22:57,combo,kernel,,"klogd 1.4.1, log source = /proc/kmsg started.",Dec 6 12:22:57,Normal
21137,15315397,28988577,Dec,6,12:22:57,combo,kernel,,ACPI disabled because your bios is from 2000 and too old,Dec 6 12:22:57,Anomaly
21134,15315397,28988577,Dec,6,12:22:57,combo,irqbalance,,irqbalance startup succeeded,Dec 6 12:22:57,Normal
21131,15315397,28988577,Dec,6,12:22:57,combo,syslog,,klogd startup succeeded,Dec 6 12:22:57,Normal
21130,15315397,28988577,Dec,6,12:22:57,combo,kernel,,On node 0 totalpages: 32430,Dec 6 12:22:57,Normal
21133,15315397,28988577,Dec,6,12:22:57,combo,kernel,,"Normal zone: 28334 pages, LIFO batch:6",Dec 6 12:22:57,Normal
21132,15315397,28988577,Dec,6,12:22:57,combo,kernel,,"DMA zone: 4096 pages, LIFO batch:1",Dec 6 12:22:57,Normal
21127,15315397,28988577,Dec,6,12:22:57,combo,kernel,,0MB HIGHMEM available.,Dec 6 12:22:57,Normal
21126,15315397,28988577,Dec,6,12:22:57,combo,kernel,,BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved),Dec 6 12:22:57,Normal
21118,15315397,28988577,Dec,6,12:22:57,combo,syslog,,syslogd startup succeeded,Dec 6 12:22:57,Normal
21128,15315397,28988577,Dec,6,12:22:57,combo,kernel,,126MB LOWMEM available.,Dec 6 12:22:57,Normal
21167,15315398,28988578,Dec,6,12:22:58,combo,kernel,,CPU: Intel Pentium III (Coppermine) stepping 06,Dec 6 12:22:58,Normal
21163,15315398,28988578,Dec,6,12:22:58,combo,kernel,,"CPU: L1 I cache: 16K, L1 D cache: 16K",Dec 6 12:22:58,Normal
21164,15315398,28988578,Dec,6,12:22:58,combo,kernel,,CPU: L2 cache: 256K,Dec 6 12:22:58,Normal
21165,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Intel machine check architecture supported.,Dec 6 12:22:58,Normal
21162,15315398,28988578,Dec,6,12:22:58,combo,kernel,,"Mount-cache hash table entries: 512 (order: 0, 4096 bytes)",Dec 6 12:22:58,Normal
21151,15315398,28988578,Dec,6,12:22:58,combo,rpc.statd,1608.0,Version 1.0.6 Starting,Dec 6 12:22:58,Normal
21152,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Security Scaffold v1.0.0 initialized,Dec 6 12:22:58,Normal
21153,15315398,28988578,Dec,6,12:22:58,combo,nfslock,,rpc.statd startup succeeded,Dec 6 12:22:58,Normal
21158,15315398,28988578,Dec,6,12:22:58,combo,kernel,,selinux_register_security: Registering secondary module capability,Dec 6 12:22:58,Normal
21161,15315398,28988578,Dec,6,12:22:58,combo,kernel,,"Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)",Dec 6 12:22:58,Normal
21157,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Failure registering capabilities with the kernel,Dec 6 12:22:58,Anomaly
21159,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Capability LSM initialized,Dec 6 12:22:58,Normal
21160,15315398,28988578,Dec,6,12:22:58,combo,kernel,,"Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)",Dec 6 12:22:58,Normal
21166,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Intel machine check reporting enabled on CPU#0.,Dec 6 12:22:58,Normal
21154,15315398,28988578,Dec,6,12:22:58,combo,kernel,,SELinux: Initializing.,Dec 6 12:22:58,Normal
21156,15315398,28988578,Dec,6,12:22:58,combo,kernel,,"There is already a security framework initialized, register_security failed.",Dec 6 12:22:58,Normal
21155,15315398,28988578,Dec,6,12:22:58,combo,kernel,,SELinux: Starting in permissive mode,Dec 6 12:22:58,Normal
21150,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Calibrating delay loop... 1441.79 BogoMIPS,Dec 6 12:22:58,Normal
21149,15315398,28988578,Dec,6,12:22:58,combo,kernel,,"Memory: 125312k/129720k available (1540k kernel code, 3860k reserved, 599k data, 144k init, 0k highmem)",Dec 6 12:22:58,Normal
21148,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Console: colour VGA+ 80x25,Dec 6 12:22:58,Normal
21147,15315398,28988578,Dec,6,12:22:58,combo,kernel,,Using tsc for high-res timesource,Dec 6 12:22:58,Normal
21169,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Enabling fast FPU save and restore... done.,Dec 6 12:22:59,Normal
21170,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Enabling unmasked SIMD FPU exception support... done.,Dec 6 12:22:59,Normal
21171,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Checking 'hlt' instruction... OK.,Dec 6 12:22:59,Normal
21172,15315399,28988579,Dec,6,12:22:59,combo,kernel,,POSIX conformance testing by UNIFIX,Dec 6 12:22:59,Normal
21173,15315399,28988579,Dec,6,12:22:59,combo,kernel,,NET: Registered protocol family 16,Dec 6 12:22:59,Normal
21174,15315399,28988579,Dec,6,12:22:59,combo,kernel,,"PCI: PCI BIOS revision 2.10 entry at 0xfc0ce, last bus=1",Dec 6 12:22:59,Normal
21175,15315399,28988579,Dec,6,12:22:59,combo,kernel,,PCI: Using configuration type 1,Dec 6 12:22:59,Normal
21176,15315399,28988579,Dec,6,12:22:59,combo,kernel,,mtrr: v2.0 (20020519),Dec 6 12:22:59,Normal
21177,15315399,28988579,Dec,6,12:22:59,combo,kernel,,ACPI: Subsystem revision 20040326,Dec 6 12:22:59,Normal
21178,15315399,28988579,Dec,6,12:22:59,combo,kernel,,ACPI: Interpreter disabled.,Dec 6 12:22:59,Anomaly
21179,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Linux Plug and Play Support v0.97 (c) Adam Belay,Dec 6 12:22:59,Normal
21180,15315399,28988579,Dec,6,12:22:59,combo,kernel,,usbcore: registered new driver usbfs,Dec 6 12:22:59,Normal
21181,15315399,28988579,Dec,6,12:22:59,combo,kernel,,usbcore: registered new driver hub,Dec 6 12:22:59,Normal
21182,15315399,28988579,Dec,6,12:22:59,combo,kernel,,ACPI: ACPI tables contain no PCI IRQ routing entries,Dec 6 12:22:59,Normal
21183,15315399,28988579,Dec,6,12:22:59,combo,kernel,,PCI: Invalid ACPI-PCI IRQ routing table,Dec 6 12:22:59,Anomaly
21184,15315399,28988579,Dec,6,12:22:59,combo,kernel,,PCI: Probing PCI hardware,Dec 6 12:22:59,Normal
21185,15315399,28988579,Dec,6,12:22:59,combo,kernel,,PCI: Probing PCI hardware (bus 00),Dec 6 12:22:59,Normal
21168,15315399,28988579,Dec,6,12:22:59,combo,rpcidmapd,,rpc.idmapd startup succeeded,Dec 6 12:22:59,Normal
21186,15315399,28988579,Dec,6,12:22:59,combo,random,,Initializing random number generator: succeeded,Dec 6 12:22:59,Normal
21187,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Transparent bridge - 0000:00:1e.0,Dec 6 12:22:59,Normal
21190,15315399,28988579,Dec,6,12:22:59,combo,kernel,,apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac),Dec 6 12:22:59,Normal
21188,15315399,28988579,Dec,6,12:22:59,combo,kernel,,PCI: Using IRQ router PIIX/ICH [8086/2410] at 0000:00:1f.0,Dec 6 12:22:59,Normal
21192,15315399,28988579,Dec,6,12:22:59,combo,kernel,,audit: initializing netlink socket (disabled),Dec 6 12:22:59,Anomaly
21194,15315399,28988579,Dec,6,12:22:59,combo,kernel,,audit(1133871737.703:0): initialized,Dec 6 12:22:59,Normal
21200,15315399,28988579,Dec,6,12:22:59,combo,kernel,,"Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)",Dec 6 12:22:59,Normal
21196,15315399,28988579,Dec,6,12:22:59,combo,kernel,,"Total HugeTLB memory allocated, 0",Dec 6 12:22:59,Normal
21197,15315399,28988579,Dec,6,12:22:59,combo,rc,,Starting pcmcia: succeeded,Dec 6 12:22:59,Normal
21199,15315399,28988579,Dec,6,12:22:59,combo,kernel,,VFS: Disk quotas dquot_6.5.1,Dec 6 12:22:59,Normal
21203,15315399,28988579,Dec,6,12:22:59,combo,kernel,,pci_hotplug: PCI Hot Plug PCI Core version: 0.5,Dec 6 12:22:59,Normal
21202,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Initializing Cryptographic API,Dec 6 12:22:59,Normal
21205,15315399,28988579,Dec,6,12:22:59,combo,kernel,,isapnp: No Plug & Play device found,Dec 6 12:22:59,Normal
21204,15315399,28988579,Dec,6,12:22:59,combo,kernel,,isapnp: Scanning for PnP cards...,Dec 6 12:22:59,Normal
21212,15315399,28988579,Dec,6,12:22:59,combo,kernel,,agpgart: detected 4MB dedicated video ram.,Dec 6 12:22:59,Normal
21209,15315399,28988579,Dec,6,12:22:59,combo,kernel,,agpgart: Maximum main memory to use for agp memory: 93M,Dec 6 12:22:59,Normal
21206,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Real Time Clock Driver v1.12,Dec 6 12:22:59,Normal
21207,15315399,28988579,Dec,6,12:22:59,combo,kernel,,Linux agpgart interface v0.100 (c) Dave Jones,Dec 6 12:22:59,Normal
21208,15315399,28988579,Dec,6,12:22:59,combo,kernel,,agpgart: Detected an Intel i810 E Chipset.,Dec 6 12:22:59,Normal
21211,15315399,28988579,Dec,6,12:22:59,combo,bluetooth,,hcid startup succeeded,Dec 6 12:22:59,Normal
21210,15315399,28988579,Dec,6,12:22:59,combo,hcid,1680.0,HCI daemon ver 2.4 started,Dec 6 12:22:59,Normal
21201,15315399,28988579,Dec,6,12:22:59,combo,kernel,,SELinux: Registering netfilter hooks,Dec 6 12:22:59,Normal
21233,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"hdc: SAMSUNG CD-ROM SN-124, ATAPI CD/DVD-ROM drive",Dec 6 12:23:00,Normal
21213,15315400,28988580,Dec,6,12:23:00,combo,bluetooth,,sdpd startup succeeded,Dec 6 12:23:00,Normal
21214,15315400,28988580,Dec,6,12:23:00,combo,sdpd,1686.0,sdpd v1.5 started,Dec 6 12:23:00,Normal
21215,15315400,28988580,Dec,6,12:23:00,combo,kernel,,agpgart: AGP aperture is 64M @ 0xf4000000,Dec 6 12:23:00,Normal
21216,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing enabled",Dec 6 12:23:00,Normal
21218,15315400,28988580,Dec,6,12:23:00,combo,kernel,,ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A,Dec 6 12:23:00,Normal
21219,15315400,28988580,Dec,6,12:23:00,combo,kernel,,RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize,Dec 6 12:23:00,Normal
21217,15315400,28988580,Dec,6,12:23:00,combo,kernel,,ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A,Dec 6 12:23:00,Normal
21228,15315400,28988580,Dec,6,12:23:00,combo,apmd,,apmd startup succeeded,Dec 6 12:23:00,Normal
21221,15315400,28988580,Dec,6,12:23:00,combo,kernel,,ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx,Dec 6 12:23:00,Anomaly
21222,15315400,28988580,Dec,6,12:23:00,combo,netfs,,Mounting other filesystems: succeeded,Dec 6 12:23:00,Normal
21223,15315400,28988580,Dec,6,12:23:00,combo,kernel,,ICH: IDE controller at PCI slot 0000:00:1f.1,Dec 6 12:23:00,Normal
21224,15315400,28988580,Dec,6,12:23:00,combo,kernel,,ICH: chipset revision 2,Dec 6 12:23:00,Normal
21225,15315400,28988580,Dec,6,12:23:00,combo,kernel,,ICH: not 100%% native mode: will probe irqs later,Dec 6 12:23:00,Normal
21226,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:pio",Dec 6 12:23:00,Normal
21227,15315400,28988580,Dec,6,12:23:00,combo,apmd,1720.0,"Version 3.0.2 (APM BIOS 1.2, Linux driver 1.16ac)",Dec 6 12:23:00,Normal
21232,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"ide0 at 0x1f0-0x1f7,0x3f6 on irq 14",Dec 6 12:23:00,Normal
21229,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:pio",Dec 6 12:23:00,Normal
21230,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"hda: IBM-DTLA-307015, ATA DISK drive",Dec 6 12:23:00,Normal
21231,15315400,28988580,Dec,6,12:23:00,combo,kernel,,Using cfq io scheduler,Dec 6 12:23:00,Normal
21235,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"ide1 at 0x170-0x177,0x376 on irq 15",Dec 6 12:23:00,Normal
21234,15315400,28988580,Dec,6,12:23:00,combo,kernel,,hdc: Disabling (U)DMA for SAMSUNG CD-ROM SN-124 (blacklisted),Dec 6 12:23:00,Normal
21237,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"hda: 29336832 sectors (15020 MB) w/1916KiB Cache, CHS=29104/16/63, UDMA(66)",Dec 6 12:23:00,Normal
21220,15315400,28988580,Dec,6,12:23:00,combo,kernel,,Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2,Dec 6 12:23:00,Normal
21238,15315400,28988580,Dec,6,12:23:00,combo,kernel,,hda: hda1 hda2 hda3,Dec 6 12:23:00,Normal
21239,15315400,28988580,Dec,6,12:23:00,combo,kernel,,"hdc: ATAPI 24X CD-ROM drive, 128kB Cache",Dec 6 12:23:00,Normal
21236,15315400,28988580,Dec,6,12:23:00,combo,kernel,,hda: max request size: 128KiB,Dec 6 12:23:00,Normal
21265,15315401,28988581,Dec,6,12:23:01,combo,kernel,,TCP: Hash tables configured (established 8192 bind 16384),Dec 6 12:23:01,Normal
21240,15315401,28988581,Dec,6,12:23:01,combo,kernel,,Uniform CD-ROM driver Revision: 3.20,Dec 6 12:23:01,Normal
21241,15315401,28988581,Dec,6,12:23:01,combo,autofs,,automount startup succeeded,Dec 6 12:23:01,Normal
21242,15315401,28988581,Dec,6,12:23:01,combo,kernel,,ide-floppy driver 0.99.newide,Dec 6 12:23:01,Normal
21249,15315401,28988581,Dec,6,12:23:01,combo,kernel,,mice: PS/2 mouse device common for all mice,Dec 6 12:23:01,Normal
21244,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,smartd version 5.21 Copyright (C) 2002-3 Bruce Allen,Dec 6 12:23:01,Normal
21245,15315401,28988581,Dec,6,12:23:01,combo,kernel,,usbcore: registered new driver hid,Dec 6 12:23:01,Normal
21246,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,Home page is http://smartmontools.sourceforge.net/,Dec 6 12:23:01,Normal
21247,15315401,28988581,Dec,6,12:23:01,combo,kernel,,drivers/usb/input/hid-core.c: v2.0:USB HID core driver,Dec 6 12:23:01,Normal
21248,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,Opened configuration file /etc/smartd.conf,Dec 6 12:23:01,Normal
21250,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,Configuration file /etc/smartd.conf parsed.,Dec 6 12:23:01,Normal
21251,15315401,28988581,Dec,6,12:23:01,combo,kernel,,"serio: i8042 AUX port at 0x60,0x64 irq 12",Dec 6 12:23:01,Normal
21243,15315401,28988581,Dec,6,12:23:01,combo,kernel,,usbcore: registered new driver hiddev,Dec 6 12:23:01,Normal
21260,15315401,28988581,Dec,6,12:23:01,combo,apmd,1720.0,Charge: * * * (-1% unknown),Dec 6 12:23:01,Normal
21253,15315401,28988581,Dec,6,12:23:01,combo,kernel,,input: ImPS/2 Logitech Wheel Mouse on isa0060/serio1,Dec 6 12:23:01,Normal
21254,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,"Device: /dev/hda, found in smartd database.",Dec 6 12:23:01,Normal
21255,15315401,28988581,Dec,6,12:23:01,combo,kernel,,"serio: i8042 KBD port at 0x60,0x64 irq 1",Dec 6 12:23:01,Normal
21256,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,"Device: /dev/hda, is SMART capable. Adding to ""monitor"" list.",Dec 6 12:23:01,Normal
21257,15315401,28988581,Dec,6,12:23:01,combo,kernel,,input: AT Translated Set 2 keyboard on isa0060/serio0,Dec 6 12:23:01,Normal
21258,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,Monitoring 1 ATA and 0 SCSI devices,Dec 6 12:23:01,Normal
21259,15315401,28988581,Dec,6,12:23:01,combo,kernel,,"md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27",Dec 6 12:23:01,Normal
21264,15315401,28988581,Dec,6,12:23:01,combo,kernel,,"IP: routing cache hash table of 512 buckets, 4Kbytes",Dec 6 12:23:01,Normal
21261,15315401,28988581,Dec,6,12:23:01,combo,smartd,1760.0,smartd has fork()ed into background mode. New PID=1760.,Dec 6 12:23:01,Normal
21262,15315401,28988581,Dec,6,12:23:01,combo,smartd,,smartd startup succeeded,Dec 6 12:23:01,Normal
21263,15315401,28988581,Dec,6,12:23:01,combo,kernel,,NET: Registered protocol family 2,Dec 6 12:23:01,Normal
21267,15315401,28988581,Dec,6,12:23:01,combo,kernel,,NET: Registered protocol family 1,Dec 6 12:23:01,Normal
21266,15315401,28988581,Dec,6,12:23:01,combo,kernel,,Initializing IPsec netlink socket,Dec 6 12:23:01,Normal
21252,15315401,28988581,Dec,6,12:23:01,combo,smartd,1758.0,"Device: /dev/hda, opened",Dec 6 12:23:01,Normal
21269,15315402,28988582,Dec,6,12:23:02,combo,kernel,,checking if image is initramfs...it isn't (no cpio magic); looks like an initrd,Dec 6 12:23:02,Normal
21272,15315402,28988582,Dec,6,12:23:02,combo,kernel,,md: autorun ...,Dec 6 12:23:02,Normal
21271,15315402,28988582,Dec,6,12:23:02,combo,kernel,,md: Autodetecting RAID arrays.,Dec 6 12:23:02,Normal
21270,15315402,28988582,Dec,6,12:23:02,combo,kernel,,Freeing initrd memory: 186k freed,Dec 6 12:23:02,Normal
21268,15315402,28988582,Dec,6,12:23:02,combo,kernel,,NET: Registered protocol family 17,Dec 6 12:23:02,Normal
21276,15315403,28988583,Dec,6,12:23:03,combo,kernel,,VFS: Mounted root (ext2 filesystem).,Dec 6 12:23:03,Normal
21273,15315403,28988583,Dec,6,12:23:03,combo,kernel,,md: ... autorun DONE.,Dec 6 12:23:03,Normal
21274,15315403,28988583,Dec,6,12:23:03,combo,kernel,,RAMDISK: Compressed image found at block 0,Dec 6 12:23:03,Normal
21277,15315403,28988583,Dec,6,12:23:03,combo,kernel,,kjournald starting. Commit interval 5 seconds,Dec 6 12:23:03,Normal
21275,15315403,28988583,Dec,6,12:23:03,combo,rc,,Starting hpoj: succeeded,Dec 6 12:23:03,Normal
21280,15315404,28988584,Dec,6,12:23:04,combo,kernel,,SELinux: Disabled at runtime.,Dec 6 12:23:04,Anomaly
21278,15315404,28988584,Dec,6,12:23:04,combo,kernel,,EXT3-fs: mounted filesystem with ordered data mode.,Dec 6 12:23:04,Normal
21281,15315404,28988584,Dec,6,12:23:04,combo,kernel,,SELinux: Unregistering netfilter hooks,Dec 6 12:23:04,Normal
21279,15315404,28988584,Dec,6,12:23:04,combo,kernel,,Freeing unused kernel memory: 144k freed,Dec 6 12:23:04,Normal
21286,15315405,28988585,Dec,6,12:23:05,combo,kernel,,PCI: Found IRQ 11 for device 0000:00:1f.2,Dec 6 12:23:05,Normal
21283,15315405,28988585,Dec,6,12:23:05,combo,kernel,,Disabled Privacy Extensions on device 022db720(lo),Dec 6 12:23:05,Anomaly
21282,15315405,28988585,Dec,6,12:23:05,combo,kernel,,NET: Registered protocol family 10,Dec 6 12:23:05,Normal
21287,15315405,28988585,Dec,6,12:23:05,combo,kernel,,uhci_hcd 0000:00:1f.2: UHCI Host Controller,Dec 6 12:23:05,Normal
21285,15315405,28988585,Dec,6,12:23:05,combo,kernel,,USB Universal Host Controller Interface driver v2.2,Dec 6 12:23:05,Normal
21284,15315405,28988585,Dec,6,12:23:05,combo,kernel,,IPv6 over IPv4 tunneling driver,Dec 6 12:23:05,Normal
21290,15315406,28988586,Dec,6,12:23:06,combo,kernel,,hub 1-0:1.0: USB hub found,Dec 6 12:23:06,Normal
21291,15315406,28988586,Dec,6,12:23:06,combo,kernel,,hub 1-0:1.0: 2 ports detected,Dec 6 12:23:06,Normal
21289,15315406,28988586,Dec,6,12:23:06,combo,kernel,,"uhci_hcd 0000:00:1f.2: new USB bus registered, assigned bus number 1",Dec 6 12:23:06,Normal
21288,15315406,28988586,Dec,6,12:23:06,combo,kernel,,"uhci_hcd 0000:00:1f.2: irq 11, io base 0000ff80",Dec 6 12:23:06,Normal
21297,15315407,28988587,Dec,6,12:23:07,combo,kernel,,"EXT3 FS on hda1, internal journal",Dec 6 12:23:07,Normal
21296,15315407,28988587,Dec,6,12:23:07,combo,kernel,,kjournald starting. Commit interval 5 seconds,Dec 6 12:23:07,Normal
21293,15315407,28988587,Dec,6,12:23:07,combo,kernel,,device-mapper: 4.1.0-ioctl (2003-12-10) initialised: dm@uk.sistina.com,Dec 6 12:23:07,Normal
21294,15315407,28988587,Dec,6,12:23:07,combo,kernel,,cdrom: open failed.,Dec 6 12:23:07,Anomaly
21295,15315407,28988587,Dec,6,12:23:07,combo,kernel,,Adding 262072k swap on /dev/hda3. Priority:-1 extents:1,Dec 6 12:23:07,Normal
21298,15315407,28988587,Dec,6,12:23:07,combo,kernel,,EXT3-fs: mounted filesystem with ordered data mode.,Dec 6 12:23:07,Normal
21292,15315407,28988587,Dec,6,12:23:07,combo,kernel,,"EXT3 FS on hda2, internal journal",Dec 6 12:23:07,Normal
21300,15315408,28988588,Dec,6,12:23:08,combo,kernel,,microcode: CPU0 already at revision 0x8 (current=0x8),Dec 6 12:23:08,Normal
21299,15315408,28988588,Dec,6,12:23:08,combo,kernel,,IA-32 Microcode Update Driver: v1.13 <tigran@veritas.com>,Dec 6 12:23:08,Normal
21303,15315408,28988588,Dec,6,12:23:08,combo,kernel,,parport0: irq 7 detected,Dec 6 12:23:08,Normal
21301,15315408,28988588,Dec,6,12:23:08,combo,kernel,,microcode: No suitable data for cpu 0,Dec 6 12:23:08,Normal
21302,15315408,28988588,Dec,6,12:23:08,combo,kernel,,"parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE,EPP]",Dec 6 12:23:08,Normal
21309,15315409,28988589,Dec,6,12:23:09,combo,kernel,,3c59x: Donald Becker and others. www.scyld.com/network/vortex.html,Dec 6 12:23:09,Normal
21308,15315409,28988589,Dec,6,12:23:09,combo,kernel,,PCI: Found IRQ 5 for device 0000:01:0c.0,Dec 6 12:23:09,Normal
21304,15315409,28988589,Dec,6,12:23:09,combo,kernel,,SCSI subsystem initialized,Dec 6 12:23:09,Normal
21306,15315409,28988589,Dec,6,12:23:09,combo,kernel,,Floppy drive(s): fd0 is 1.44M,Dec 6 12:23:09,Normal
21305,15315409,28988589,Dec,6,12:23:09,combo,kernel,,inserting floppy driver for 2.6.5-1.358,Dec 6 12:23:09,Normal
21307,15315409,28988589,Dec,6,12:23:09,combo,kernel,,FDC 0 is a National Semiconductor PC87306,Dec 6 12:23:09,Normal
21310,15315410,28988590,Dec,6,12:23:10,combo,kernel,,0000:01:0c.0: 3Com PCI 3c905C Tornado at 0xec80. Vers LK1.1.19,Dec 6 12:23:10,Normal
21311,15315410,28988590,Dec,6,12:23:10,combo,kernel,,ip_tables: (C) 2000-2002 Netfilter core team,Dec 6 12:23:10,Normal
21313,15315411,28988591,Dec,6,12:23:11,combo,kernel,,3c59x: Donald Becker and others. www.scyld.com/network/vortex.html,Dec 6 12:23:11,Normal
21314,15315411,28988591,Dec,6,12:23:11,combo,kernel,,0000:01:0c.0: 3Com PCI 3c905C Tornado at 0xec80. Vers LK1.1.19,Dec 6 12:23:11,Normal
21312,15315411,28988591,Dec,6,12:23:11,combo,kernel,,PCI: Found IRQ 5 for device 0000:01:0c.0,Dec 6 12:23:11,Normal
21324,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: RFCOMM socket layer initialized,Dec 6 12:23:12,Normal
21315,15315412,28988592,Dec,6,12:23:12,combo,kernel,,ip_tables: (C) 2000-2002 Netfilter core team,Dec 6 12:23:12,Normal
21316,15315412,28988592,Dec,6,12:23:12,combo,kernel,,process `syslogd' is using obsolete setsockopt SO_BSDCOMPAT,Dec 6 12:23:12,Normal
21317,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: Core ver 2.4,Dec 6 12:23:12,Normal
21318,15315412,28988592,Dec,6,12:23:12,combo,kernel,,NET: Registered protocol family 31,Dec 6 12:23:12,Normal
21319,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: HCI device and connection manager initialized,Dec 6 12:23:12,Normal
21320,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: HCI socket layer initialized,Dec 6 12:23:12,Normal
21321,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: L2CAP ver 2.1,Dec 6 12:23:12,Normal
21322,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: L2CAP socket layer initialized,Dec 6 12:23:12,Normal
21323,15315412,28988592,Dec,6,12:23:12,combo,kernel,,Bluetooth: RFCOMM ver 1.2,Dec 6 12:23:12,Normal
21329,15315413,28988593,Dec,6,12:23:13,combo,kernel,,lp0: console ready,Dec 6 12:23:13,Normal
21328,15315413,28988593,Dec,6,12:23:13,combo,kernel,,lp0: using parport0 (polling).,Dec 6 12:23:13,Normal
21326,15315413,28988593,Dec,6,12:23:13,combo,kernel,,"parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE,EPP]",Dec 6 12:23:13,Normal
21325,15315413,28988593,Dec,6,12:23:13,combo,kernel,,Bluetooth: RFCOMM TTY layer initialized,Dec 6 12:23:13,Normal
21327,15315413,28988593,Dec,6,12:23:13,combo,kernel,,parport0: irq 7 detected,Dec 6 12:23:13,Normal
21330,15315415,28988595,Dec,6,12:23:15,combo,cups,,cupsd startup succeeded,Dec 6 12:23:15,Normal
21332,15315416,28988596,Dec,6,12:23:16,combo,xinetd,,xinetd startup succeeded,Dec 6 12:23:16,Normal
21331,15315416,28988596,Dec,6,12:23:16,combo,sshd,,succeeded,Dec 6 12:23:16,Normal
21333,15315418,28988598,Dec,6,12:23:18,combo,xinetd,2006.0,No such internal service: services/stream - DISABLING,Dec 6 12:23:18,Anomaly
21336,15315419,28988599,Dec,6,12:23:19,combo,xinetd,2006.0,bind failed (Address already in use (errno = 98)). service = telnet,Dec 6 12:23:19,Normal
21334,15315419,28988599,Dec,6,12:23:19,combo,sendmail,,sendmail startup succeeded,Dec 6 12:23:19,Normal
21337,15315419,28988599,Dec,6,12:23:19,combo,xinetd,2006.0,Service telnet failed to start and is deactivated.,Dec 6 12:23:19,Anomaly
21338,15315419,28988599,Dec,6,12:23:19,combo,xinetd,2006.0,xinetd Version 2.3.13 started with libwrap loadavg options compiled in.,Dec 6 12:23:19,Normal
21335,15315419,28988599,Dec,6,12:23:19,combo,sendmail,,sm-client startup succeeded,Dec 6 12:23:19,Normal
21339,15315420,28988600,Dec,6,12:23:20,combo,xinetd,2006.0,Started working: 30 available services,Dec 6 12:23:20,Normal
21340,15315423,28988603,Dec,6,12:23:23,combo,udev,2046.0,creating device node '/udev/lp0',Dec 6 12:23:23,Normal
21341,15315427,28988607,Dec,6,12:23:27,combo,spamassassin,,spamd startup succeeded,Dec 6 12:23:27,Normal
21342,15315428,28988608,Dec,6,12:23:28,combo,privoxy,,Dec 06 12:23:28 Privoxy(-150085504) Info: loading configuration file '/etc/privoxy/config':,Dec 6 12:23:28,Normal
21344,15315429,28988609,Dec,6,12:23:29,combo,gpm,2072.0,*** info [startup.c(95)]:,Dec 6 12:23:29,Normal
21345,15315429,28988609,Dec,6,12:23:29,combo,gpm,2072.0,Started gpm successfully. Entered daemon mode.,Dec 6 12:23:29,Normal
21347,15315429,28988609,Dec,6,12:23:29,combo,gpm,2072.0,imps2: Auto-detected intellimouse PS/2,Dec 6 12:23:29,Normal
21346,15315429,28988609,Dec,6,12:23:29,combo,gpm,2072.0,*** info [mice.c(1766)]:,Dec 6 12:23:29,Normal
21343,15315429,28988609,Dec,6,12:23:29,combo,privoxy,,privoxy startup succeeded,Dec 6 12:23:29,Normal
21349,15315430,28988610,Dec,6,12:23:30,combo,su(pam_unix),2081.0,session opened for user htt by (uid=0),Dec 6 12:23:30,Normal
21351,15315430,28988610,Dec,6,12:23:30,combo,IIim,,htt startup succeeded,Dec 6 12:23:30,Normal
21350,15315430,28988610,Dec,6,12:23:30,combo,su(pam_unix),2081.0,session closed for user htt,Dec 6 12:23:30,Normal
21348,15315430,28988610,Dec,6,12:23:30,combo,gpm,,gpm startup succeeded,Dec 6 12:23:30,Normal
21352,15315434,28988614,Dec,6,12:23:34,combo,htt_server,2084.0,started.,Dec 6 12:23:34,Normal
21353,15315435,28988615,Dec,6,12:23:35,combo,canna,,succeeded,Dec 6 12:23:35,Normal
21354,15315435,28988615,Dec,6,12:23:35,combo,crond,,crond startup succeeded,Dec 6 12:23:35,Normal
21356,15315438,28988618,Dec,6,12:23:38,combo,xinetd,2006.0,select reported EBADF but no bad file descriptors were found,Dec 6 12:23:38,Normal
21355,15315438,28988618,Dec,6,12:23:38,combo,xinetd,2006.0,file descriptor of service comsat has been closed,Dec 6 12:23:38,Normal
21357,15315445,28988625,Dec,6,12:23:45,combo,xfs,,xfs startup succeeded,Dec 6 12:23:45,Normal
21358,15315445,28988625,Dec,6,12:23:45,combo,anacron,,anacron startup succeeded,Dec 6 12:23:45,Normal
21360,15315446,28988626,Dec,6,12:23:46,combo,readahead,,Starting background readahead:,Dec 6 12:23:46,Normal
21361,15315446,28988626,Dec,6,12:23:46,combo,rc,,Starting readahead: succeeded,Dec 6 12:23:46,Normal
21359,15315446,28988626,Dec,6,12:23:46,combo,atd,,atd startup succeeded,Dec 6 12:23:46,Normal
21362,15315447,28988627,Dec,6,12:23:47,combo,messagebus,,messagebus startup succeeded,Dec 6 12:23:47,Normal
21363,15315468,28988648,Dec,6,12:24:08,combo,httpd,,httpd startup succeeded,Dec 6 12:24:08,Normal
21364,15315471,28988651,Dec,6,12:24:11,combo,squid,2282.0,Squid Parent: child process 2284 started,Dec 6 12:24:11,Normal
21365,15315479,28988659,Dec,6,12:24:19,combo,named,,named startup succeeded,Dec 6 12:24:19,Normal
21381,15315482,28988662,Dec,6,12:24:22,combo,snmpd,,snmpd startup succeeded,Dec 6 12:24:22,Normal
21386,15315483,28988663,Dec,6,12:24:23,combo,ntpd,,ntpd startup succeeded,Dec 6 12:24:23,Normal
21385,15315483,28988663,Dec,6,12:24:23,combo,ntpd,2319.0,ntpd 4.2.0@1.1161-r Thu Mar 11 11:46:39 EST 2004 (1),Dec 6 12:24:23,Normal
21387,15315484,28988664,Dec,6,12:24:24,combo,snmpd,2310.0,NET-SNMP version 5.1.1,Dec 6 12:24:24,Normal
21391,15315486,28988666,Dec,6,12:24:26,combo,ntpd,2319.0,precision = 2.000 usec,Dec 6 12:24:26,Normal
21393,15315488,28988668,Dec,6,12:24:28,combo,ntpd,2319.0,kernel time sync status 0040,Dec 6 12:24:28,Normal
21395,15315489,28988669,Dec,6,12:24:29,combo,ntpd,2319.0,frequency initialized 0.000 PPM from /var/lib/ntp/drift,Dec 6 12:24:29,Normal
21397,15315490,28988670,Dec,6,12:24:30,combo,ntpd,2319.0,"configure: keyword ""authenticate"" unknown, line ignored",Dec 6 12:24:30,Normal
21401,15315492,28988672,Dec,6,12:24:32,combo,mysqld,,Starting MySQL: succeeded,Dec 6 12:24:32,Normal
21404,15315493,28988673,Dec,6,12:24:33,combo,rsyncd,2386.0,"rsyncd version 2.6.2 starting, listening on port 873",Dec 6 12:24:33,Normal
21406,15315494,28988674,Dec,6,12:24:34,combo,mdmonitor,,mdadm succeeded,Dec 6 12:24:34,Normal
21407,15315495,28988675,Dec,6,12:24:35,combo,mdmpd,,mdmpd failed,Dec 6 12:24:35,Anomaly
21412,15315497,28988677,Dec,6,12:24:37,combo,udev,2585.0,creating device node '/udev/vcs2',Dec 6 12:24:37,Normal
21410,15315497,28988677,Dec,6,12:24:37,combo,udev,2492.0,removing device node '/udev/vcsa8',Dec 6 12:24:37,Normal
21408,15315497,28988677,Dec,6,12:24:37,combo,udev,2520.0,creating device node '/udev/vcsa1',Dec 6 12:24:37,Normal
21409,15315497,28988677,Dec,6,12:24:37,combo,udev,2493.0,creating device node '/udev/vcs1',Dec 6 12:24:37,Normal
21424,15315497,28988677,Dec,6,12:24:37,combo,udev,2701.0,removing device node '/udev/vcs2',Dec 6 12:24:37,Normal
21421,15315497,28988677,Dec,6,12:24:37,combo,udev,2690.0,creating device node '/udev/vcsa5',Dec 6 12:24:37,Normal
21422,15315497,28988677,Dec,6,12:24:37,combo,udev,2691.0,creating device node '/udev/vcsa6',Dec 6 12:24:37,Normal
21423,15315497,28988677,Dec,6,12:24:37,combo,udev,2590.0,creating device node '/udev/vcsa4',Dec 6 12:24:37,Normal
21420,15315497,28988677,Dec,6,12:24:37,combo,udev,2689.0,creating device node '/udev/vcs6',Dec 6 12:24:37,Normal
21417,15315497,28988677,Dec,6,12:24:37,combo,udev,2628.0,removing device node '/udev/vcs1',Dec 6 12:24:37,Normal
21418,15315497,28988677,Dec,6,12:24:37,combo,udev,2589.0,creating device node '/udev/vcs4',Dec 6 12:24:37,Normal
21419,15315497,28988677,Dec,6,12:24:37,combo,udev,2688.0,creating device node '/udev/vcs5',Dec 6 12:24:37,Normal
21411,15315497,28988677,Dec,6,12:24:37,combo,udev,2491.0,removing device node '/udev/vcs8',Dec 6 12:24:37,Normal
21413,15315497,28988677,Dec,6,12:24:37,combo,udev,2586.0,creating device node '/udev/vcsa2',Dec 6 12:24:37,Normal
21414,15315497,28988677,Dec,6,12:24:37,combo,udev,2587.0,creating device node '/udev/vcs3',Dec 6 12:24:37,Normal
21415,15315497,28988677,Dec,6,12:24:37,combo,udev,2620.0,removing device node '/udev/vcsa1',Dec 6 12:24:37,Normal
21416,15315497,28988677,Dec,6,12:24:37,combo,udev,2588.0,creating device node '/udev/vcsa3',Dec 6 12:24:37,Normal
21425,15315498,28988678,Dec,6,12:24:38,combo,udev,2724.0,removing device node '/udev/vcsa2',Dec 6 12:24:38,Normal
21426,15315498,28988678,Dec,6,12:24:38,combo,udev,2734.0,removing device node '/udev/vcs3',Dec 6 12:24:38,Normal
21427,15315499,28988679,Dec,6,12:24:39,combo,udev,2747.0,creating device node '/udev/vcsa1',Dec 6 12:24:39,Normal
21428,15315499,28988679,Dec,6,12:24:39,combo,udev,2752.0,removing device node '/udev/vcsa3',Dec 6 12:24:39,Normal
21431,15315500,28988680,Dec,6,12:24:40,combo,udev,2771.0,removing device node '/udev/vcs5',Dec 6 12:24:40,Normal
21430,15315500,28988680,Dec,6,12:24:40,combo,udev,2762.0,removing device node '/udev/vcs4',Dec 6 12:24:40,Normal
21429,15315500,28988680,Dec,6,12:24:40,combo,udev,2757.0,creating device node '/udev/vcs1',Dec 6 12:24:40,Normal
21433,15315501,28988681,Dec,6,12:24:41,combo,udev,2789.0,removing device node '/udev/vcsa5',Dec 6 12:24:41,Normal
21432,15315501,28988681,Dec,6,12:24:41,combo,udev,2780.0,removing device node '/udev/vcs6',Dec 6 12:24:41,Normal
21434,15315501,28988681,Dec,6,12:24:41,combo,udev,2798.0,removing device node '/udev/vcsa6',Dec 6 12:24:41,Normal
21435,15315503,28988683,Dec,6,12:24:43,combo,udev,2807.0,removing device node '/udev/vcsa4',Dec 6 12:24:43,Normal
21437,15315504,28988684,Dec,6,12:24:44,combo,udev,2813.0,creating device node '/udev/vcsa2',Dec 6 12:24:44,Normal
21436,15315504,28988684,Dec,6,12:24:44,combo,udev,2812.0,creating device node '/udev/vcs2',Dec 6 12:24:44,Normal
21438,15315505,28988685,Dec,6,12:24:45,combo,udev,2815.0,creating device node '/udev/vcs3',Dec 6 12:24:45,Normal
21440,15315506,28988686,Dec,6,12:24:46,combo,udev,2825.0,creating device node '/udev/vcs4',Dec 6 12:24:46,Normal
21439,15315506,28988686,Dec,6,12:24:46,combo,udev,2820.0,creating device node '/udev/vcsa3',Dec 6 12:24:46,Normal
21441,15315507,28988687,Dec,6,12:24:47,combo,udev,2826.0,creating device node '/udev/vcs5',Dec 6 12:24:47,Normal
21442,15315507,28988687,Dec,6,12:24:47,combo,udev,2827.0,creating device node '/udev/vcs6',Dec 6 12:24:47,Normal
21443,15315507,28988687,Dec,6,12:24:47,combo,udev,2829.0,creating device node '/udev/vcsa5',Dec 6 12:24:47,Normal
21445,15315508,28988688,Dec,6,12:24:48,combo,udev,2846.0,creating device node '/udev/vcsa4',Dec 6 12:24:48,Normal
21444,15315508,28988688,Dec,6,12:24:48,combo,udev,2844.0,creating device node '/udev/vcsa6',Dec 6 12:24:48,Normal
21446,15315511,28988691,Dec,6,12:24:51,combo,udev,2836.0,creating device node '/udev/vcs7',Dec 6 12:24:51,Normal
21447,15315511,28988691,Dec,6,12:24:51,combo,udev,2843.0,creating device node '/udev/vcsa7',Dec 6 12:24:51,Normal
21448,15315513,28988693,Dec,6,12:24:53,combo,udev,2915.0,removing device node '/udev/vcs7',Dec 6 12:24:53,Normal
21449,15315513,28988693,Dec,6,12:24:53,combo,udev,2924.0,removing device node '/udev/vcsa7',Dec 6 12:24:53,Normal
21450,15315514,28988694,Dec,6,12:24:54,combo,udev,2929.0,creating device node '/udev/vcs7',Dec 6 12:24:54,Normal
21451,15315514,28988694,Dec,6,12:24:54,combo,udev,2930.0,creating device node '/udev/vcsa7',Dec 6 12:24:54,Normal
21452,15315684,28988864,Dec,6,12:27:44,combo,ntpd,2319.0,"synchronized to LOCAL(0), stratum=10",Dec 6 12:27:44,Normal
21453,15315684,28988864,Dec,6,12:27:44,combo,ntpd,2319.0,kernel time sync disabled 0041,Dec 6 12:27:44,Anomaly
21454,15315750,28988930,Dec,6,12:28:50,combo,ntpd,2319.0,kernel time sync enabled 0001,Dec 6 12:28:50,Normal
21366,15333479,29006659,Dec,6,17:24:19,combo,named,2298.0,starting BIND 9.2.3 -u named -t /var/named/chroot,Dec 6 17:24:19,Normal
21367,15333479,29006659,Dec,6,17:24:19,combo,named,2298.0,using 1 CPU,Dec 6 17:24:19,Normal
21378,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:8, 63.126.79.81#53",Dec 6 17:24:20,Normal
21373,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:3, 63.126.79.71#53",Dec 6 17:24:20,Normal
21375,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:5, 63.126.79.73#53",Dec 6 17:24:20,Normal
21374,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:4, 63.126.79.72#53",Dec 6 17:24:20,Normal
21377,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:7, 63.126.79.80#53",Dec 6 17:24:20,Normal
21376,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:6, 63.126.79.75#53",Dec 6 17:24:20,Normal
21369,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface lo, 127.0.0.1#53",Dec 6 17:24:20,Normal
21368,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,loading configuration from '/etc/named.conf',Dec 6 17:24:20,Normal
21370,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0, 63.126.79.67#53",Dec 6 17:24:20,Normal
21372,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:2, 63.126.79.70#53",Dec 6 17:24:20,Normal
21371,15333480,29006660,Dec,6,17:24:20,combo,named,2298.0,"listening on IPv4 interface eth0:1, 63.126.79.69#53",Dec 6 17:24:20,Normal
21380,15333481,29006661,Dec,6,17:24:21,combo,named,2298.0,"listening on IPv4 interface eth0:10, 63.126.79.83#53",Dec 6 17:24:21,Normal
21379,15333481,29006661,Dec,6,17:24:21,combo,named,2298.0,"listening on IPv4 interface eth0:9, 63.126.79.82#53",Dec 6 17:24:21,Normal
21382,15333482,29006662,Dec,6,17:24:22,combo,named,2298.0,"listening on IPv4 interface eth0:11, 63.126.79.84#53",Dec 6 17:24:22,Normal
21383,15333483,29006663,Dec,6,17:24:23,combo,named,2298.0,"listening on IPv4 interface eth0:12, 63.126.79.85#53",Dec 6 17:24:23,Normal
21384,15333483,29006663,Dec,6,17:24:23,combo,named,2298.0,"listening on IPv4 interface eth0:13, 63.126.79.87#53",Dec 6 17:24:23,Normal
21388,15333484,29006664,Dec,6,17:24:24,combo,named,2298.0,"listening on IPv4 interface eth0:14, 63.126.79.89#53",Dec 6 17:24:24,Normal
21389,15333486,29006666,Dec,6,17:24:26,combo,named,2298.0,"listening on IPv4 interface eth0:15, 63.126.79.90#53",Dec 6 17:24:26,Normal
21390,15333487,29006667,Dec,6,17:24:27,combo,named,2298.0,"listening on IPv4 interface eth0:16, 63.126.79.95#53",Dec 6 17:24:27,Normal
21392,15333488,29006668,Dec,6,17:24:28,combo,named,2298.0,"listening on IPv4 interface eth0:17, 63.126.79.100#53",Dec 6 17:24:28,Normal
21394,15333489,29006669,Dec,6,17:24:29,combo,named,2298.0,"listening on IPv4 interface eth0:18, 63.126.79.105#53",Dec 6 17:24:29,Normal
21398,15333490,29006670,Dec,6,17:24:30,combo,named,2298.0,"listening on IPv4 interface eth0:20, 63.126.79.115#53",Dec 6 17:24:30,Normal
21396,15333490,29006670,Dec,6,17:24:30,combo,named,2298.0,"listening on IPv4 interface eth0:19, 63.126.79.110#53",Dec 6 17:24:30,Normal
21399,15333491,29006671,Dec,6,17:24:31,combo,named,2298.0,"listening on IPv4 interface eth0:21, 63.126.79.120#53",Dec 6 17:24:31,Normal
21400,15333492,29006672,Dec,6,17:24:32,combo,named,2298.0,"listening on IPv4 interface eth0:22, 63.126.79.125#53",Dec 6 17:24:32,Normal
21402,15333492,29006672,Dec,6,17:24:32,combo,named,2298.0,couldn't add command channel 127.0.0.1#953: not found,Dec 6 17:24:32,Anomaly
21403,15333493,29006673,Dec,6,17:24:33,combo,named,2298.0,couldn't add command channel ::1#953: not found,Dec 6 17:24:33,Anomaly
21405,15333494,29006674,Dec,6,17:24:34,combo,named,2298.0,running,Dec 6 17:24:34,Normal
21461,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4508.0,check pass; user unknown,Dec 7 03:28:16,Normal
21464,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4512.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21466,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4514.0,check pass; user unknown,Dec 7 03:28:16,Normal
21459,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4507.0,check pass; user unknown,Dec 7 03:28:16,Normal
21462,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4508.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21460,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4507.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21463,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4512.0,check pass; user unknown,Dec 7 03:28:16,Normal
21465,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4511.0,check pass; user unknown,Dec 7 03:28:16,Normal
21473,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4509.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21472,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4510.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21471,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4511.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21468,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4509.0,check pass; user unknown,Dec 7 03:28:16,Normal
21467,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4510.0,check pass; user unknown,Dec 7 03:28:16,Normal
21470,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4523.0,check pass; user unknown,Dec 7 03:28:16,Normal
21469,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4514.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21457,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4506.0,check pass; user unknown,Dec 7 03:28:16,Normal
21455,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4513.0,check pass; user unknown,Dec 7 03:28:16,Normal
21456,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4513.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21458,15369716,29042896,Dec,7,03:28:16,combo,sshd(pam_unix),4506.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:16,Anomaly
21474,15369717,29042897,Dec,7,03:28:17,combo,sshd(pam_unix),4523.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=port0034-abx-adsl.cwjamaica.com,Dec 7 03:28:17,Anomaly
21475,15371837,29045017,Dec,7,04:03:37,combo,su(pam_unix),4945.0,session opened for user cyrus by (uid=0),Dec 7 04:03:37,Normal
21476,15371838,29045018,Dec,7,04:03:38,combo,su(pam_unix),4945.0,session closed for user cyrus,Dec 7 04:03:38,Normal
21477,15371838,29045018,Dec,7,04:03:38,combo,logrotate,,ALERT exited abnormally with [1],Dec 7 04:03:38,Normal
21478,15372744,29045924,Dec,7,04:18:44,combo,su(pam_unix),6202.0,session opened for user news by (uid=0),Dec 7 04:18:44,Normal
21479,15372744,29045924,Dec,7,04:18:44,combo,su(pam_unix),6202.0,session closed for user news,Dec 7 04:18:44,Normal
21485,15412361,29085541,Dec,7,15:19:01,combo,ftpd,7772.0,connection from 211.72.151.162 () at Wed Dec 7 15:19:01 2005,Dec 7 15:19:01,Normal
21480,15412361,29085541,Dec,7,15:19:01,combo,ftpd,7773.0,connection from 211.72.151.162 () at Wed Dec 7 15:19:01 2005,Dec 7 15:19:01,Normal
21481,15412361,29085541,Dec,7,15:19:01,combo,ftpd,7771.0,connection from 211.72.151.162 () at Wed Dec 7 15:19:01 2005,Dec 7 15:19:01,Normal
21482,15412361,29085541,Dec,7,15:19:01,combo,ftpd,7770.0,connection from 211.72.151.162 () at Wed Dec 7 15:19:01 2005,Dec 7 15:19:01,Normal
21483,15412361,29085541,Dec,7,15:19:01,combo,ftpd,7775.0,connection from 211.72.151.162 () at Wed Dec 7 15:19:01 2005,Dec 7 15:19:01,Normal
21484,15412361,29085541,Dec,7,15:19:01,combo,ftpd,7774.0,connection from 211.72.151.162 () at Wed Dec 7 15:19:01 2005,Dec 7 15:19:01,Normal
21486,15458492,29131672,Dec,8,04:07:52,combo,su(pam_unix),9639.0,session opened for user cyrus by (uid=0),Dec 8 04:07:52,Normal
21487,15458492,29131672,Dec,8,04:07:52,combo,su(pam_unix),9639.0,session closed for user cyrus,Dec 8 04:07:52,Normal
21488,15458493,29131673,Dec,8,04:07:53,combo,logrotate,,ALERT exited abnormally with [1],Dec 8 04:07:53,Normal
21489,15459711,29132891,Dec,8,04:28:11,combo,su(pam_unix),10034.0,session opened for user news by (uid=0),Dec 8 04:28:11,Normal
21490,15459712,29132892,Dec,8,04:28:12,combo,su(pam_unix),10034.0,session closed for user news,Dec 8 04:28:12,Normal
21491,15494678,29167858,Dec,8,14:10:58,combo,sshd(pam_unix),11667.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:58,Anomaly
21494,15494678,29167858,Dec,8,14:10:58,combo,sshd(pam_unix),11661.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:58,Anomaly
21495,15494678,29167858,Dec,8,14:10:58,combo,sshd(pam_unix),11662.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:58,Anomaly
21492,15494678,29167858,Dec,8,14:10:58,combo,sshd(pam_unix),11660.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:58,Anomaly
21493,15494678,29167858,Dec,8,14:10:58,combo,sshd(pam_unix),11665.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:58,Anomaly
21498,15494679,29167859,Dec,8,14:10:59,combo,sshd(pam_unix),11669.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:59,Anomaly
21497,15494679,29167859,Dec,8,14:10:59,combo,sshd(pam_unix),11672.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:59,Anomaly
21496,15494679,29167859,Dec,8,14:10:59,combo,sshd(pam_unix),11671.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:10:59,Anomaly
21499,15494683,29167863,Dec,8,14:11:03,combo,sshd(pam_unix),11676.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=81-233-245-217-no37.tbcn.telia.com user=root,Dec 8 14:11:03,Anomaly
21500,15512935,29186115,Dec,8,19:15:15,combo,kernel,,Out of Memory: Killed process 2298 (named).,Dec 8 19:15:15,Normal
21501,15514744,29187924,Dec,8,19:45:24,combo,kernel,,Out of Memory: Killed process 2365 (mysqld).,Dec 8 19:45:24,Normal
21502,15515053,29188233,Dec,8,19:50:33,combo,kernel,,Out of Memory: Killed process 12287 (mysqld).,Dec 8 19:50:33,Normal
21503,15515339,29188519,Dec,8,19:55:19,combo,kernel,,Out of Memory: Killed process 12318 (mysqld).,Dec 8 19:55:19,Normal
21504,15515652,29188832,Dec,8,20:00:32,combo,kernel,,Out of Memory: Killed process 12338 (mysqld).,Dec 8 20:00:32,Normal
21505,15515935,29189115,Dec,8,20:05:15,combo,kernel,,Out of Memory: Killed process 12358 (mysqld).,Dec 8 20:05:15,Normal
21506,15515944,29189124,Dec,8,20:05:24,combo,kernel,,Out of Memory: Killed process 2328 (httpd).,Dec 8 20:05:24,Normal
21507,15516237,29189417,Dec,8,20:10:17,combo,kernel,,Out of Memory: Killed process 12390 (mysqld).,Dec 8 20:10:17,Normal
21508,15516549,29189729,Dec,8,20:15:29,combo,kernel,,Out of Memory: Killed process 12410 (mysqld).,Dec 8 20:15:29,Normal
21509,15516837,29190017,Dec,8,20:20:17,combo,kernel,,Out of Memory: Killed process 12427 (mysqld).,Dec 8 20:20:17,Normal
21510,15517139,29190319,Dec,8,20:25:19,combo,kernel,,Out of Memory: Killed process 12447 (mysqld).,Dec 8 20:25:19,Normal
21511,15517449,29190629,Dec,8,20:30:29,combo,kernel,,Out of Memory: Killed process 12470 (mysqld).,Dec 8 20:30:29,Normal
21512,15517467,29190647,Dec,8,20:30:47,combo,kernel,,Out of Memory: Killed process 2329 (httpd).,Dec 8 20:30:47,Normal
21513,15517758,29190938,Dec,8,20:35:38,combo,kernel,,Out of Memory: Killed process 12498 (mysqld).,Dec 8 20:35:38,Normal
21514,15518062,29191242,Dec,8,20:40:42,combo,kernel,,Out of Memory: Killed process 12525 (mysqld).,Dec 8 20:40:42,Normal
21515,15518115,29191295,Dec,8,20:41:35,combo,kernel,,Out of Memory: Killed process 2330 (httpd).,Dec 8 20:41:35,Normal
21516,15518133,29191313,Dec,8,20:41:53,combo,kernel,,Out of Memory: Killed process 2331 (httpd).,Dec 8 20:41:53,Normal
21517,15518177,29191357,Dec,8,20:42:37,combo,kernel,,Out of Memory: Killed process 12549 (httpd).,Dec 8 20:42:37,Normal
21518,15518185,29191365,Dec,8,20:42:45,combo,kernel,,Out of Memory: Killed process 2332 (httpd).,Dec 8 20:42:45,Normal
21519,15518355,29191535,Dec,8,20:45:35,combo,kernel,,Out of Memory: Killed process 12553 (httpd).,Dec 8 20:45:35,Normal
21520,15518643,29191823,Dec,8,20:50:23,combo,kernel,,Out of Memory: Killed process 12556 (httpd).,Dec 8 20:50:23,Normal
21521,15518653,29191833,Dec,8,20:50:33,combo,kernel,,Out of Memory: Killed process 12557 (httpd).,Dec 8 20:50:33,Normal
21522,15518661,29191841,Dec,8,20:50:41,combo,kernel,,Out of Memory: Killed process 12579 (httpd).,Dec 8 20:50:41,Normal
21523,15518669,29191849,Dec,8,20:50:49,combo,kernel,,Out of Memory: Killed process 12580 (httpd).,Dec 8 20:50:49,Normal
21524,15518677,29191857,Dec,8,20:50:57,combo,kernel,,Out of Memory: Killed process 2333 (httpd).,Dec 8 20:50:57,Normal
21525,15518704,29191884,Dec,8,20:51:24,combo,kernel,,Out of Memory: Killed process 12581 (httpd).,Dec 8 20:51:24,Normal
21526,15518711,29191891,Dec,8,20:51:31,combo,kernel,,Out of Memory: Killed process 12582 (httpd).,Dec 8 20:51:31,Normal
21527,15518718,29191898,Dec,8,20:51:38,combo,kernel,,Out of Memory: Killed process 12583 (httpd).,Dec 8 20:51:38,Normal
21528,15518728,29191908,Dec,8,20:51:48,combo,kernel,,Out of Memory: Killed process 12584 (httpd).,Dec 8 20:51:48,Normal
21529,15518737,29191917,Dec,8,20:51:57,combo,kernel,,Out of Memory: Killed process 12585 (httpd).,Dec 8 20:51:57,Normal
21530,15521947,29195127,Dec,8,21:45:27,combo,kernel,,Out of Memory: Killed process 12586 (httpd).,Dec 8 21:45:27,Normal
21531,15522240,29195420,Dec,8,21:50:20,combo,kernel,,Out of Memory: Killed process 12587 (httpd).,Dec 8 21:50:20,Normal
21532,15522257,29195437,Dec,8,21:50:37,combo,kernel,,Out of Memory: Killed process 12588 (httpd).,Dec 8 21:50:37,Normal
21533,15522278,29195458,Dec,8,21:50:58,combo,kernel,,Out of Memory: Killed process 12699 (httpd).,Dec 8 21:50:58,Normal
21534,15522291,29195471,Dec,8,21:51:11,combo,kernel,,Out of Memory: Killed process 12705 (httpd).,Dec 8 21:51:11,Normal
21535,15522538,29195718,Dec,8,21:55:18,combo,kernel,,Out of Memory: Killed process 12716 (httpd).,Dec 8 21:55:18,Normal
21536,15523137,29196317,Dec,8,22:05:17,combo,kernel,,Out of Memory: Killed process 12717 (httpd).,Dec 8 22:05:17,Normal
21537,15523172,29196352,Dec,8,22:05:52,combo,kernel,,Out of Memory: Killed process 12718 (httpd).,Dec 8 22:05:52,Normal
21538,15523187,29196367,Dec,8,22:06:07,combo,kernel,,Out of Memory: Killed process 12723 (httpd).,Dec 8 22:06:07,Normal
21539,15523195,29196375,Dec,8,22:06:15,combo,kernel,,Out of Memory: Killed process 12751 (httpd).,Dec 8 22:06:15,Normal
21540,15523206,29196386,Dec,8,22:06:26,combo,kernel,,Out of Memory: Killed process 12752 (httpd).,Dec 8 22:06:26,Normal
21541,15523216,29196396,Dec,8,22:06:36,combo,kernel,,Out of Memory: Killed process 12753 (httpd).,Dec 8 22:06:36,Normal
21542,15523230,29196410,Dec,8,22:06:50,combo,kernel,,Out of Memory: Killed process 12754 (httpd).,Dec 8 22:06:50,Normal
21543,15523258,29196438,Dec,8,22:07:18,combo,kernel,,Out of Memory: Killed process 12755 (httpd).,Dec 8 22:07:18,Normal
21544,15523270,29196450,Dec,8,22:07:30,combo,kernel,,Out of Memory: Killed process 12756 (httpd).,Dec 8 22:07:30,Normal
21545,15523280,29196460,Dec,8,22:07:40,combo,kernel,,Out of Memory: Killed process 12757 (httpd).,Dec 8 22:07:40,Normal
21546,15523288,29196468,Dec,8,22:07:48,combo,kernel,,Out of Memory: Killed process 12758 (httpd).,Dec 8 22:07:48,Normal
21547,15523301,29196481,Dec,8,22:08:01,combo,kernel,,Out of Memory: Killed process 12759 (httpd).,Dec 8 22:08:01,Normal
21548,15523309,29196489,Dec,8,22:08:09,combo,kernel,,Out of Memory: Killed process 12760 (httpd).,Dec 8 22:08:09,Normal
21549,15523317,29196497,Dec,8,22:08:17,combo,kernel,,Out of Memory: Killed process 12761 (httpd).,Dec 8 22:08:17,Normal
21550,15523327,29196507,Dec,8,22:08:27,combo,kernel,,Out of Memory: Killed process 2334 (httpd).,Dec 8 22:08:27,Normal
21551,15523334,29196514,Dec,8,22:08:34,combo,kernel,,Out of Memory: Killed process 12762 (httpd).,Dec 8 22:08:34,Normal
21552,15523345,29196525,Dec,8,22:08:45,combo,kernel,,Out of Memory: Killed process 12763 (httpd).,Dec 8 22:08:45,Normal
21553,15523366,29196546,Dec,8,22:09:06,combo,kernel,,Out of Memory: Killed process 12764 (httpd).,Dec 8 22:09:06,Normal
21554,15523387,29196567,Dec,8,22:09:27,combo,kernel,,Out of Memory: Killed process 12765 (httpd).,Dec 8 22:09:27,Normal
21555,15523397,29196577,Dec,8,22:09:37,combo,kernel,,Out of Memory: Killed process 12766 (httpd).,Dec 8 22:09:37,Normal
21556,15535754,29208934,Dec,9,01:35:34,combo,kernel,,Out of Memory: Killed process 12767 (httpd).,Dec 9 01:35:34,Normal
21557,15536056,29209236,Dec,9,01:40:36,combo,kernel,,Out of Memory: Killed process 12768 (httpd).,Dec 9 01:40:36,Normal
21558,15536366,29209546,Dec,9,01:45:46,combo,kernel,,Out of Memory: Killed process 12769 (httpd).,Dec 9 01:45:46,Normal
21559,15536385,29209565,Dec,9,01:46:05,combo,kernel,,Out of Memory: Killed process 12770 (httpd).,Dec 9 01:46:05,Normal
21560,15536396,29209576,Dec,9,01:46:16,combo,kernel,,Out of Memory: Killed process 12780 (httpd).,Dec 9 01:46:16,Normal
21561,15544720,29217900,Dec,9,04:05:00,combo,su(pam_unix),13724.0,session opened for user cyrus by (uid=0),Dec 9 04:05:00,Normal
21562,15544721,29217901,Dec,9,04:05:01,combo,su(pam_unix),13724.0,session closed for user cyrus,Dec 9 04:05:01,Normal
21563,15544725,29217905,Dec,9,04:05:05,combo,logrotate,,ALERT exited abnormally with [1],Dec 9 04:05:05,Normal
21564,15546269,29219449,Dec,9,04:30:49,combo,kernel,,Out of Memory: Killed process 13137 (httpd).,Dec 9 04:30:49,Normal
21565,15546289,29219469,Dec,9,04:31:09,combo,kernel,,Out of Memory: Killed process 13151 (httpd).,Dec 9 04:31:09,Normal
21566,15546306,29219486,Dec,9,04:31:26,combo,kernel,,Out of Memory: Killed process 13152 (httpd).,Dec 9 04:31:26,Normal
21567,15547479,29220659,Dec,9,04:50:59,combo,kernel,,Out of Memory: Killed process 13153 (httpd).,Dec 9 04:50:59,Normal
21568,15547759,29220939,Dec,9,04:55:39,combo,kernel,,Out of Memory: Killed process 13166 (httpd).,Dec 9 04:55:39,Normal
21569,15547797,29220977,Dec,9,04:56:17,combo,kernel,,Out of Memory: Killed process 14995 (httpd).,Dec 9 04:56:17,Normal
21570,15547823,29221003,Dec,9,04:56:43,combo,kernel,,Out of Memory: Killed process 14997 (httpd).,Dec 9 04:56:43,Normal
21571,15547856,29221036,Dec,9,04:57:16,combo,kernel,,Out of Memory: Killed process 15037 (httpd).,Dec 9 04:57:16,Normal
21572,15547868,29221048,Dec,9,04:57:28,combo,kernel,,Out of Memory: Killed process 15046 (httpd).,Dec 9 04:57:28,Normal
21573,15547893,29221073,Dec,9,04:57:53,combo,kernel,,Out of Memory: Killed process 15047 (httpd).,Dec 9 04:57:53,Normal
21574,15547919,29221099,Dec,9,04:58:19,combo,kernel,,Out of Memory: Killed process 15048 (httpd).,Dec 9 04:58:19,Normal
21575,15547932,29221112,Dec,9,04:58:32,combo,kernel,,Out of Memory: Killed process 15049 (httpd).,Dec 9 04:58:32,Normal
21576,15547949,29221129,Dec,9,04:58:49,combo,kernel,,Out of Memory: Killed process 15050 (httpd).,Dec 9 04:58:49,Normal
21577,15547954,29221134,Dec,9,04:58:54,combo,kernel,,Out of Memory: Killed process 15051 (httpd).,Dec 9 04:58:54,Normal
21578,15548097,29221277,Dec,9,05:01:17,combo,su(pam_unix),15078.0,session opened for user news by (uid=0),Dec 9 05:01:17,Normal
21579,15548098,29221278,Dec,9,05:01:18,combo,su(pam_unix),15078.0,session closed for user news,Dec 9 05:01:18,Normal
21597,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15192.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21596,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15194.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21591,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15188.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21590,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15189.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21589,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15183.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21588,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15186.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21587,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15191.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21586,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15178.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21595,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15193.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21594,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15179.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21580,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15181.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21581,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15177.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21582,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15184.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21583,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15180.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21584,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15182.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21585,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15185.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21593,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15187.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21592,15550531,29223711,Dec,9,05:41:51,combo,ftpd,15190.0,connection from 212.192.157.99 () at Fri Dec 9 05:41:51 2005,Dec 9 05:41:51,Normal
21598,15561287,29234467,Dec,9,08:41:07,combo,telnetd,15476.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:41:07,Normal
21599,15561298,29234478,Dec,9,08:41:18,combo,telnetd,15478.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:41:18,Normal
21600,15561305,29234485,Dec,9,08:41:25,combo,telnetd,15480.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:41:25,Normal
21601,15561360,29234540,Dec,9,08:42:20,combo,telnetd,15482.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:42:20,Normal
21602,15561586,29234766,Dec,9,08:46:06,combo,telnetd,15489.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:46:06,Normal
21603,15561594,29234774,Dec,9,08:46:14,combo,telnetd,15491.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:46:14,Normal
21604,15561633,29234813,Dec,9,08:46:53,combo,telnetd,15493.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:46:53,Normal
21605,15561680,29234860,Dec,9,08:47:40,combo,telnetd,15495.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:47:40,Normal
21606,15561688,29234868,Dec,9,08:47:48,combo,telnetd,15497.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:47:48,Normal
21607,15561715,29234895,Dec,9,08:48:15,combo,telnetd,15499.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:48:15,Normal
21608,15561802,29234982,Dec,9,08:49:42,combo,telnetd,15501.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:49:42,Normal
21609,15562079,29235259,Dec,9,08:54:19,combo,telnetd,15510.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:54:19,Normal
21610,15562095,29235275,Dec,9,08:54:35,combo,telnetd,15512.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:54:35,Normal
21611,15562157,29235337,Dec,9,08:55:37,combo,telnetd,15518.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:55:37,Normal
21612,15562205,29235385,Dec,9,08:56:25,combo,telnetd,15520.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:56:25,Normal
21613,15562218,29235398,Dec,9,08:56:38,combo,telnetd,15522.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:56:38,Normal
21614,15562382,29235562,Dec,9,08:59:22,combo,telnetd,15525.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:59:22,Normal
21615,15562386,29235566,Dec,9,08:59:26,combo,telnetd,15527.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:59:26,Normal
21616,15562400,29235580,Dec,9,08:59:40,combo,telnetd,15529.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 08:59:40,Normal
21617,15562426,29235606,Dec,9,09:00:06,combo,telnetd,15530.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:00:06,Normal
21618,15562491,29235671,Dec,9,09:01:11,combo,telnetd,15555.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:01:11,Normal
21619,15562524,29235704,Dec,9,09:01:44,combo,telnetd,15557.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:01:44,Normal
21620,15562701,29235881,Dec,9,09:04:41,combo,telnetd,15559.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:04:41,Normal
21621,15562983,29236163,Dec,9,09:09:23,combo,telnetd,15565.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:09:23,Normal
21622,15563022,29236202,Dec,9,09:10:02,combo,telnetd,15498.0,ttloop: read: Connection reset by peer,Dec 9 09:10:02,Normal
21623,15563095,29236275,Dec,9,09:11:15,combo,telnetd,15574.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:11:15,Normal
21624,15563129,29236309,Dec,9,09:11:49,combo,telnetd,15576.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:11:49,Normal
21625,15563148,29236328,Dec,9,09:12:08,combo,telnetd,15578.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:12:08,Normal
21626,15563188,29236368,Dec,9,09:12:48,combo,telnetd,15580.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:12:48,Normal
21627,15563272,29236452,Dec,9,09:14:12,combo,telnetd,15582.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:14:12,Normal
21628,15563279,29236459,Dec,9,09:14:19,combo,telnetd,15584.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:14:19,Normal
21629,15563325,29236505,Dec,9,09:15:05,combo,telnetd,15586.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:15:05,Normal
21630,15563361,29236541,Dec,9,09:15:41,combo,telnetd,15592.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:15:41,Normal
21631,15563462,29236642,Dec,9,09:17:22,combo,telnetd,15594.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:17:22,Normal
21632,15563510,29236690,Dec,9,09:18:10,combo,telnetd,15596.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:18:10,Normal
21633,15563531,29236711,Dec,9,09:18:31,combo,telnetd,15598.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:18:31,Normal
21634,15563550,29236730,Dec,9,09:18:50,combo,telnetd,15600.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:18:50,Normal
21635,15563863,29237043,Dec,9,09:24:03,combo,telnetd,15612.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:24:03,Normal
21636,15564289,29237469,Dec,9,09:31:09,combo,telnetd,15630.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:31:09,Normal
21637,15564339,29237519,Dec,9,09:31:59,combo,telnetd,15632.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:31:59,Normal
21638,15564358,29237538,Dec,9,09:32:18,combo,telnetd,15634.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:32:18,Normal
21639,15564420,29237600,Dec,9,09:33:20,combo,telnetd,15637.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:33:20,Normal
21640,15564422,29237602,Dec,9,09:33:22,combo,telnetd,15639.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:33:22,Normal
21641,15564436,29237616,Dec,9,09:33:36,combo,telnetd,15641.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:33:36,Normal
21642,15564591,29237771,Dec,9,09:36:11,combo,telnetd,15651.0,ttloop: read: Connection reset by peer,Dec 9 09:36:11,Normal
21643,15564594,29237774,Dec,9,09:36:14,combo,telnetd,15653.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:36:14,Normal
21644,15564810,29237990,Dec,9,09:39:50,combo,telnetd,15477.0,ttloop: read: Connection reset by peer,Dec 9 09:39:50,Normal
21646,15564831,29238011,Dec,9,09:40:11,combo,gpm,2072.0,imps2: Auto-detected intellimouse PS/2,Dec 9 09:40:11,Normal
21645,15564831,29238011,Dec,9,09:40:11,combo,gpm,2072.0,*** info [mice.c(1766)]:,Dec 9 09:40:11,Normal
21647,15564840,29238020,Dec,9,09:40:20,combo,login(pam_unix),2420.0,session opened for user root by LOGIN(uid=0),Dec 9 09:40:20,Normal
21649,15564879,29238059,Dec,9,09:40:59,combo,gdm(pam_unix),2828.0,bad username [\],Dec 9 09:40:59,Normal
21650,15564881,29238061,Dec,9,09:41:01,combo,gdm-binary,2828.0,Couldn't authenticate user,Dec 9 09:41:01,Normal
21651,15564887,29238067,Dec,9,09:41:07,combo,telnetd,15712.0,ttloop: read: Connection reset by peer,Dec 9 09:41:07,Normal
21652,15564902,29238082,Dec,9,09:41:22,combo,telnetd,15597.0,ttloop: read: Connection timed out,Dec 9 09:41:22,Normal
21653,15564931,29238111,Dec,9,09:41:51,combo,login(pam_unix),2419.0,session opened for user root by LOGIN(uid=0),Dec 9 09:41:51,Normal
21656,15565006,29238186,Dec,9,09:43:06,combo,kernel,,Kernel log daemon terminating.,Dec 9 09:43:06,Normal
21655,15565006,29238186,Dec,9,09:43:06,combo,kernel,,Kernel logging (proc) stopped.,Dec 9 09:43:06,Normal
21657,15565013,29238193,Dec,9,09:43:13,combo,syslog,,klogd shutdown succeeded,Dec 9 09:43:13,Normal
21660,15565021,29238201,Dec,9,09:43:21,combo,syslog,,syslogd shutdown succeeded,Dec 9 09:43:21,Normal
21661,15565025,29238205,Dec,9,09:43:25,combo,syslog,,syslogd startup succeeded,Dec 9 09:43:25,Normal
21662,15565025,29238205,Dec,9,09:43:25,combo,syslog,,klogd startup succeeded,Dec 9 09:43:25,Normal
21663,15565025,29238205,Dec,9,09:43:25,combo,kernel,,"klogd 1.4.1, log source = /proc/kmsg started.",Dec 9 09:43:25,Normal
21664,15565076,29238256,Dec,9,09:44:16,combo,telnetd,15861.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:44:16,Normal
21665,15565169,29238349,Dec,9,09:45:49,combo,login(pam_unix),2419.0,session closed for user root,Dec 9 09:45:49,Normal
21666,15565170,29238350,Dec,9,09:45:50,combo,init,,open(/dev/pts/0): No such file or directory,Dec 9 09:45:50,Anomaly
21667,15565171,29238351,Dec,9,09:45:51,combo,udev,15950.0,removing device node '/udev/vcsa2',Dec 9 09:45:51,Normal
21668,15565171,29238351,Dec,9,09:45:51,combo,udev,15949.0,removing device node '/udev/vcs2',Dec 9 09:45:51,Normal
21669,15565171,29238351,Dec,9,09:45:51,combo,udev,15959.0,creating device node '/udev/vcs2',Dec 9 09:45:51,Normal
21671,15565171,29238351,Dec,9,09:45:51,combo,udev,15967.0,removing device node '/udev/vcsa2',Dec 9 09:45:51,Normal
21674,15565171,29238351,Dec,9,09:45:51,combo,udev,15972.0,creating device node '/udev/vcsa2',Dec 9 09:45:51,Normal
21673,15565171,29238351,Dec,9,09:45:51,combo,udev,15980.0,creating device node '/udev/vcs2',Dec 9 09:45:51,Normal
21672,15565171,29238351,Dec,9,09:45:51,combo,udev,15975.0,removing device node '/udev/vcs2',Dec 9 09:45:51,Normal
21670,15565171,29238351,Dec,9,09:45:51,combo,udev,15960.0,creating device node '/udev/vcsa2',Dec 9 09:45:51,Normal
21675,15565307,29238487,Dec,9,09:48:07,combo,login(pam_unix),2420.0,session closed for user root,Dec 9 09:48:07,Normal
21676,15565308,29238488,Dec,9,09:48:08,combo,init,,open(/dev/pts/0): No such file or directory,Dec 9 09:48:08,Anomaly
21679,15565309,29238489,Dec,9,09:48:09,combo,udev,16080.0,creating device node '/udev/vcsa3',Dec 9 09:48:09,Normal
21681,15565309,29238489,Dec,9,09:48:09,combo,udev,16089.0,removing device node '/udev/vcs3',Dec 9 09:48:09,Normal
21680,15565309,29238489,Dec,9,09:48:09,combo,udev,16081.0,creating device node '/udev/vcs3',Dec 9 09:48:09,Normal
21677,15565309,29238489,Dec,9,09:48:09,combo,udev,16035.0,removing device node '/udev/vcsa3',Dec 9 09:48:09,Normal
21678,15565309,29238489,Dec,9,09:48:09,combo,udev,16034.0,removing device node '/udev/vcs3',Dec 9 09:48:09,Normal
21682,15565309,29238489,Dec,9,09:48:09,combo,udev,16093.0,removing device node '/udev/vcsa3',Dec 9 09:48:09,Normal
21684,15565310,29238490,Dec,9,09:48:10,combo,udev,16101.0,creating device node '/udev/vcsa3',Dec 9 09:48:10,Normal
21683,15565310,29238490,Dec,9,09:48:10,combo,udev,16098.0,creating device node '/udev/vcs3',Dec 9 09:48:10,Normal
21685,15565333,29238513,Dec,9,09:48:33,combo,login(pam_unix),2418.0,session closed for user root,Dec 9 09:48:33,Normal
21686,15565333,29238513,Dec,9,09:48:33,combo,init,,open(/dev/pts/0): No such file or directory,Dec 9 09:48:33,Anomaly
21687,15565494,29238674,Dec,9,09:51:14,combo,telnetd,16127.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:51:14,Normal
21688,15565500,29238680,Dec,9,09:51:20,combo,telnetd,16129.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:51:20,Normal
21689,15565511,29238691,Dec,9,09:51:31,combo,telnetd,15862.0,ttloop: read: Connection reset by peer,Dec 9 09:51:31,Normal
21690,15565540,29238720,Dec,9,09:52:00,combo,telnetd,16131.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:52:00,Normal
21691,15565626,29238806,Dec,9,09:53:26,combo,telnetd,16133.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:53:26,Normal
21692,15565694,29238874,Dec,9,09:54:34,combo,telnetd,16135.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:54:34,Normal
21693,15565741,29238921,Dec,9,09:55:21,combo,telnetd,16141.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:55:21,Normal
21694,15565906,29239086,Dec,9,09:58:06,combo,telnetd,16143.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:58:06,Normal
21695,15565909,29239089,Dec,9,09:58:09,combo,telnetd,16145.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:58:09,Normal
21696,15565930,29239110,Dec,9,09:58:30,combo,telnetd,16148.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:58:30,Normal
21697,15565932,29239112,Dec,9,09:58:32,combo,telnetd,16147.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:58:32,Normal
21698,15565953,29239133,Dec,9,09:58:53,combo,telnetd,16151.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:58:53,Normal
21699,15565981,29239161,Dec,9,09:59:21,combo,telnetd,16153.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 09:59:21,Normal
21700,15566113,29239293,Dec,9,10:01:33,combo,telnetd,16176.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 10:01:33,Normal
21701,15566210,29239390,Dec,9,10:03:10,combo,telnetd,16178.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 10:03:10,Normal
21702,15566213,29239393,Dec,9,10:03:13,combo,telnetd,16180.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 10:03:13,Normal
21703,15566536,29239716,Dec,9,10:08:36,combo,telnetd,16201.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 10:08:36,Normal
21704,15566617,29239797,Dec,9,10:09:57,combo,telnetd,16203.0,ttloop: peer died: Invalid or incomplete multibyte or wide character,Dec 9 10:09:57,Normal
21707,15566768,29239948,Dec,9,10:12:28,combo,telnetd,16146.0,ttloop: read: Connection reset by peer,Dec 9 10:12:28,Normal
21706,15566768,29239948,Dec,9,10:12:28,combo,telnetd,15638.0,ttloop: read: Connection reset by peer,Dec 9 10:12:28,Normal
21705,15566768,29239948,Dec,9,10:12:28,combo,telnetd,15526.0,ttloop: read: Connection reset by peer,Dec 9 10:12:28,Normal
21712,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16226.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21713,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16213.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21711,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16224.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21710,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16222.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21714,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16215.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21715,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16219.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21709,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16227.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21708,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16225.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21717,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16217.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21716,15566868,29240048,Dec,9,10:14:08,combo,sshd(pam_unix),16212.0,authentication failure; logname= uid=0 euid=0 tty=NODEVssh ruser= rhost=host-xe04.kiosk.ws user=root,Dec 9 10:14:08,Anomaly
21718,15569172,29242352,Dec,9,10:52:32,combo,telnetd,15479.0,ttloop: read: Connection timed out,Dec 9 10:52:32,Normal
21719,15569179,29242359,Dec,9,10:52:39,combo,telnetd,15481.0,ttloop: read: Connection timed out,Dec 9 10:52:39,Normal
21720,15569235,29242415,Dec,9,10:53:35,combo,telnetd,15483.0,ttloop: read: Connection timed out,Dec 9 10:53:35,Normal
21721,15569460,29242640,Dec,9,10:57:20,combo,telnetd,15490.0,ttloop: read: Connection timed out,Dec 9 10:57:20,Normal
21722,15569469,29242649,Dec,9,10:57:29,combo,telnetd,15492.0,ttloop: read: Connection timed out,Dec 9 10:57:29,Normal
21723,15569507,29242687,Dec,9,10:58:07,combo,telnetd,15494.0,ttloop: read: Connection timed out,Dec 9 10:58:07,Normal
21724,15569554,29242734,Dec,9,10:58:54,combo,telnetd,15496.0,ttloop: read: Connection timed out,Dec 9 10:58:54,Normal
21725,15569591,29242771,Dec,9,10:59:31,combo,telnetd,15500.0,ttloop: read: Connection timed out,Dec 9 10:59:31,Normal
21726,15569677,29242857,Dec,9,11:00:57,combo,telnetd,15502.0,ttloop: read: Connection timed out,Dec 9 11:00:57,Normal
21727,15569953,29243133,Dec,9,11:05:33,combo,telnetd,15511.0,ttloop: read: Connection timed out,Dec 9 11:05:33,Normal
21728,15569970,29243150,Dec,9,11:05:50,combo,telnetd,15513.0,ttloop: read: Connection timed out,Dec 9 11:05:50,Normal
21729,15570031,29243211,Dec,9,11:06:51,combo,telnetd,15519.0,ttloop: read: Connection timed out,Dec 9 11:06:51,Normal
21730,15570082,29243262,Dec,9,11:07:42,combo,telnetd,15521.0,ttloop: read: Connection timed out,Dec 9 11:07:42,Normal
21731,15570101,29243281,Dec,9,11:08:01,combo,telnetd,15523.0,ttloop: read: Connection timed out,Dec 9 11:08:01,Normal
21732,15570261,29243441,Dec,9,11:10:41,combo,telnetd,15528.0,ttloop: read: Connection timed out,Dec 9 11:10:41,Normal
21733,15570300,29243480,Dec,9,11:11:20,combo,telnetd,15531.0,ttloop: read: Connection timed out,Dec 9 11:11:20,Normal
21734,15570365,29243545,Dec,9,11:12:25,combo,telnetd,15556.0,ttloop: read: Connection timed out,Dec 9 11:12:25,Normal
21735,15570399,29243579,Dec,9,11:12:59,combo,telnetd,15558.0,ttloop: read: Connection timed out,Dec 9 11:12:59,Normal
21736,15570575,29243755,Dec,9,11:15:55,combo,telnetd,15560.0,ttloop: read: Connection timed out,Dec 9 11:15:55,Normal
21737,15570857,29244037,Dec,9,11:20:37,combo,telnetd,15566.0,ttloop: read: Connection timed out,Dec 9 11:20:37,Normal
21738,15570970,29244150,Dec,9,11:22:30,combo,telnetd,15575.0,ttloop: read: Connection timed out,Dec 9 11:22:30,Normal
21739,15571006,29244186,Dec,9,11:23:06,combo,telnetd,15577.0,ttloop: read: Connection timed out,Dec 9 11:23:06,Normal
21740,15571024,29244204,Dec,9,11:23:24,combo,telnetd,15579.0,ttloop: read: Connection timed out,Dec 9 11:23:24,Normal
21741,15571063,29244243,Dec,9,11:24:03,combo,telnetd,15581.0,ttloop: read: Connection timed out,Dec 9 11:24:03,Normal
21742,15571146,29244326,Dec,9,11:25:26,combo,telnetd,15583.0,ttloop: read: Connection timed out,Dec 9 11:25:26,Normal
21743,15571154,29244334,Dec,9,11:25:34,combo,telnetd,15585.0,ttloop: read: Connection timed out,Dec 9 11:25:34,Normal
21744,15571200,29244380,Dec,9,11:26:20,combo,telnetd,15587.0,ttloop: read: Connection timed out,Dec 9 11:26:20,Normal
21745,15571235,29244415,Dec,9,11:26:55,combo,telnetd,15593.0,ttloop: read: Connection timed out,Dec 9 11:26:55,Normal
21746,15571337,29244517,Dec,9,11:28:37,combo,telnetd,15595.0,ttloop: read: Connection timed out,Dec 9 11:28:37,Normal
21747,15571409,29244589,Dec,9,11:29:49,combo,telnetd,15599.0,ttloop: read: Connection timed out,Dec 9 11:29:49,Normal
21748,15571427,29244607,Dec,9,11:30:07,combo,telnetd,15601.0,ttloop: read: Connection timed out,Dec 9 11:30:07,Normal
21749,15571737,29244917,Dec,9,11:35:17,combo,telnetd,15613.0,ttloop: read: Connection timed out,Dec 9 11:35:17,Normal
21750,15572163,29245343,Dec,9,11:42:23,combo,telnetd,15631.0,ttloop: read: Connection timed out,Dec 9 11:42:23,Normal
21751,15572213,29245393,Dec,9,11:43:13,combo,telnetd,15633.0,ttloop: read: Connection timed out,Dec 9 11:43:13,Normal
21752,15572254,29245434,Dec,9,11:43:54,combo,telnetd,15635.0,ttloop: read: Connection timed out,Dec 9 11:43:54,Normal
21753,15572297,29245477,Dec,9,11:44:37,combo,telnetd,15640.0,ttloop: read: Connection timed out,Dec 9 11:44:37,Normal
21754,15572370,29245550,Dec,9,11:45:50,combo,sshd(pam_unix),16349.0,session opened for user root by (uid=0),Dec 9 11:45:50,Normal
21755,15572374,29245554,Dec,9,11:45:54,combo,telnetd,15643.0,ttloop: read: Connection timed out,Dec 9 11:45:54,Normal
21756,15572469,29245649,Dec,9,11:47:29,combo,telnetd,15654.0,ttloop: read: Connection timed out,Dec 9 11:47:29,Normal
21757,15572517,29245697,Dec,9,11:48:17,combo,sshd(pam_unix),16349.0,session closed for user root,Dec 9 11:48:17,Normal
21758,15572563,29245743,Dec,9,11:49:03,combo,sshd(pam_unix),16398.0,session opened for user root by (uid=0),Dec 9 11:49:03,Normal
21759,15572703,29245883,Dec,9,11:51:23,combo,sshd(pam_unix),16398.0,session closed for user root,Dec 9 11:51:23,Normal
21760,15572745,29245925,Dec,9,11:52:05,combo,sshd(pam_unix),16414.0,session opened for user root by (uid=0),Dec 9 11:52:05,Normal
21761,15572746,29245926,Dec,9,11:52:06,combo,sshd(pam_unix),16414.0,session closed for user root,Dec 9 11:52:06,Normal
21762,15572764,29245944,Dec,9,11:52:24,combo,telnetd,15711.0,ttloop: read: Connection timed out,Dec 9 11:52:24,Normal
21763,15573375,29246555,Dec,9,12:02:35,combo,telnetd,16130.0,ttloop: read: Connection timed out,Dec 9 12:02:35,Normal
21764,15573391,29246571,Dec,9,12:02:51,combo,telnetd,16128.0,ttloop: read: Connection timed out,Dec 9 12:02:51,Normal
21765,15573415,29246595,Dec,9,12:03:15,combo,telnetd,16132.0,ttloop: read: Connection timed out,Dec 9 12:03:15,Normal
21766,15573502,29246682,Dec,9,12:04:42,combo,telnetd,16134.0,ttloop: read: Connection timed out,Dec 9 12:04:42,Normal
21767,15573569,29246749,Dec,9,12:05:49,combo,telnetd,16136.0,ttloop: read: Connection timed out,Dec 9 12:05:49,Normal
21768,15573615,29246795,Dec,9,12:06:35,combo,telnetd,16142.0,ttloop: read: Connection timed out,Dec 9 12:06:35,Normal
21769,15573781,29246961,Dec,9,12:09:21,combo,telnetd,16144.0,ttloop: read: Connection timed out,Dec 9 12:09:21,Normal
21770,15573804,29246984,Dec,9,12:09:44,combo,telnetd,16150.0,ttloop: read: Connection timed out,Dec 9 12:09:44,Normal
21771,15573806,29246986,Dec,9,12:09:46,combo,telnetd,16149.0,ttloop: read: Connection timed out,Dec 9 12:09:46,Normal
21772,15573827,29247007,Dec,9,12:10:07,combo,telnetd,16152.0,ttloop: read: Connection timed out,Dec 9 12:10:07,Normal
21773,15573855,29247035,Dec,9,12:10:35,combo,telnetd,16154.0,ttloop: read: Connection timed out,Dec 9 12:10:35,Normal
21774,15573988,29247168,Dec,9,12:12:48,combo,telnetd,16177.0,ttloop: read: Connection timed out,Dec 9 12:12:48,Normal
21775,15574085,29247265,Dec,9,12:14:25,combo,telnetd,16179.0,ttloop: read: Connection timed out,Dec 9 12:14:25,Normal
21776,15574087,29247267,Dec,9,12:14:27,combo,telnetd,16181.0,ttloop: read: Connection timed out,Dec 9 12:14:27,Normal
21777,15574417,29247597,Dec,9,12:19:57,combo,telnetd,16202.0,ttloop: read: Connection timed out,Dec 9 12:19:57,Normal
21778,15574491,29247671,Dec,9,12:21:11,combo,telnetd,16204.0,ttloop: read: Connection timed out,Dec 9 12:21:11,Normal
21779,15631651,29304831,Dec,10,04:13:51,combo,su(pam_unix),18084.0,session opened for user cyrus by (uid=0),Dec 10 04:13:51,Normal
21780,15631652,29304832,Dec,10,04:13:52,combo,su(pam_unix),18084.0,session closed for user cyrus,Dec 10 04:13:52,Normal
21781,15631653,29304833,Dec,10,04:13:53,combo,logrotate,,ALERT exited abnormally with [1],Dec 10 04:13:53,Normal
21782,15631968,29305148,Dec,10,04:19:08,combo,su(pam_unix),18455.0,session opened for user news by (uid=0),Dec 10 04:19:08,Normal
21783,15631969,29305149,Dec,10,04:19:09,combo,su(pam_unix),18455.0,session closed for user news,Dec 10 04:19:09,Normal
21784,15717600,29390780,Dec,11,04:06:20,combo,su(pam_unix),20737.0,session opened for user cyrus by (uid=0),Dec 11 04:06:20,Normal
21785,15717601,29390781,Dec,11,04:06:21,combo,su(pam_unix),20737.0,session closed for user cyrus,Dec 11 04:06:21,Normal
21786,15717603,29390783,Dec,11,04:06:23,combo,cups,,cupsd shutdown succeeded,Dec 11 04:06:23,Normal
21787,15717609,29390789,Dec,11,04:06:29,combo,cups,,cupsd startup succeeded,Dec 11 04:06:29,Normal
21789,15717611,29390791,Dec,11,04:06:31,combo,logrotate,,ALERT exited abnormally with [1],Dec 11 04:06:31,Normal
21791,15717979,29391159,Dec,11,04:12:39,combo,su(pam_unix),22189.0,session closed for user news,Dec 11 04:12:39,Normal
21790,15717979,29391159,Dec,11,04:12:39,combo,su(pam_unix),22189.0,session opened for user news by (uid=0),Dec 11 04:12:39,Normal
21793,15803745,29476925,Dec,12,04:02:05,combo,su(pam_unix),27498.0,session closed for user cyrus,Dec 12 04:02:05,Normal
21792,15803745,29476925,Dec,12,04:02:05,combo,su(pam_unix),27498.0,session opened for user cyrus by (uid=0),Dec 12 04:02:05,Normal
21794,15803747,29476927,Dec,12,04:02:07,combo,logrotate,,ALERT exited abnormally with [1],Dec 12 04:02:07,Normal
21795,15804073,29477253,Dec,12,04:07:33,combo,su(pam_unix),27869.0,session opened for user news by (uid=0),Dec 12 04:07:33,Normal
21796,15804074,29477254,Dec,12,04:07:34,combo,su(pam_unix),27869.0,session closed for user news,Dec 12 04:07:34,Normal
21798,15890146,29563326,Dec,13,04:02:06,combo,su(pam_unix),30147.0,session closed for user cyrus,Dec 13 04:02:06,Normal
21797,15890146,29563326,Dec,13,04:02:06,combo,su(pam_unix),30147.0,session opened for user cyrus by (uid=0),Dec 13 04:02:06,Normal
21799,15890147,29563327,Dec,13,04:02:07,combo,logrotate,,ALERT exited abnormally with [1],Dec 13 04:02:07,Normal
|