Command สำหรับ List Top Source IP
#cat access_log |cut -d ' ' -f 1 |sort -n |uniq -c| sort -rn > report.txt
Command สำหรับ List Top Source IP
#cat access_log |cut -d ' ' -f 1 |sort -n |uniq -c| sort -rn > report.txt
After I migrated Linux from physical machine to vmware, I found something wrong about linux file systems become read-only!!!
There’s the error message as the following.
ext3_abort called.
EXT3-fs error (device sda7): ext3_journal_start_sb: Detected aborted journal
Remounting filesystem read-only
EXT3-fs error (device sda7) in start_transaction: Journal has aborted
EXT3-fs error (device sda7) in start_transaction: Journal has aborted
EXT3-fs error (device sda7) in start_transaction: Journal has aborted
EXT3-fs error (device sda7) in start_transaction: Journal has aborted
EXT3-fs error (device sda7) in start_transaction: Journal has aborted
My linux kernel is Redhat 5. The resolution is linux upgrading from Redhat 5 to Redhat 5.1.
Hope my article will be advantaged.