常見的系統日誌及各自用途:
日誌訊息的優先順序(高-->低):
rhel7提供的journalctl日誌工具的常見用法:
journalctl -u 服務名 -p 優先順序
journalctl -n 訊息條數
檢視登入成功的訊息
[root@host50 ~]# last -2
root pts/1 192.168.4.254 sat jul 7 16:21 still logged in
root pts/0 192.168.4.254 sat jul 7 11:16 still logged in
檢視登入失敗的訊息
[root@host50 ~]# lastb -2
btmp begins sat jul 7 11:14:41 2018
journalctl日誌提取工具
[root@host50 ~]# journalctl -p err -n 10 //錯誤級別在10以上的日誌訊息
-- logs begin at 六 2018-07-07 11:14:35 cst, end at 六 2018-07-07 19:42:23 cst. --
7月 07 11:14:42 host50 smartd[723]: problem creating device name scan list
7月 07 11:14:42 host50 smartd[723]: in the system's table of devices no devices found to scan
7月 07 19:40:07 host50 systemd[1]: failed to start the apache http server.
7月 07 19:40:10 host50 setroubleshoot[6764]: selinux is preventing /usr/sbin/httpd from name_bind access on the tcp_socket
7月 07 19:40:10 host50 setroubleshoot[6764]: selinux is preventing /usr/sbin/httpd from name_bind access on the tcp_socket
[root@host50 ~]# journalctl -u httpd //列出與服務http相關的訊息
-- logs begin at 六 2018-07-07 11:14:35 cst, end at 六 2018-07-07 19:50:01 cst. --
列出某個時間段的日誌資訊
[root@host50 ~]# journalctl --since "2018-07-07 14:11" --until "2018-07-07 18:11"
-- logs begin at 六 2018-07-07 11:14:35 cst, end at 六 2018-07-07 19:50:01 cst. --
Mysql常見的日誌種類及作用
1.redo 重做日誌 作用 確保日誌的永續性,防止在發生故障,髒頁未寫入磁碟。重啟資料庫會進行redo log執行重做,達到事務一致性 2.undo 回滾日誌 作用 保證資料的原子性,記錄事務發生之前的乙個版本,用於回滾,innodb事務可重複讀和讀取已提交 隔離級別就是通過mvcc undo實現...
埠號的作用及常見埠號用途說明
ip協議是由tcp udp arp icmp等一系列子協議組成的。其中,主要用來做傳輸資料使用的是tcp和udp協議。在tcp和udp協議中,都有埠號的概念存在。埠號的作用,主要是區分服務類別和在同一時間進行多個會話。舉例來說,有主機a需要對外提供ftp和www兩種服務,如果沒有埠號存在的 話,這兩...
shell日誌顏色處理及清理系統日誌的方法
記錄一下shell日誌顏色處理 colors detect color support detect color support echoerror error s n 1 2 echoinfo info s n echowarn warn s n 下面看下shell清理系統日誌 1.設定日誌峰值,...