2021-01-29 分類(lèi): 網(wǎng)站建設(shè)
本文介紹幾款Linux運(yùn)維比較實(shí)用的工具,希望對(duì)Linux管理員有所幫助。
Nethogs 是一個(gè)終端下的網(wǎng)絡(luò)流量監(jiān)控工具可以直觀的顯示每個(gè)進(jìn)程占用的帶寬。
下載:http://sourceforge.net/projects/nethogs/files/nethogs/0.8/nethogs-0.8.0.tar.gz/download
[root@localhost ~]#yum -y install libpcap-devel ncurses-devel[root@localhost ~]# tar zxvf nethogs-0.8.0.tar.gz[root@localhost ~]# cd nethogs[root@localhost nethogs]# make && make install[root@localhost nethogs]# nethogs eth0
IOZone是一款Linux文件系統(tǒng)性能測(cè)試工具 可以測(cè)試不同的操作系統(tǒng)中文件系統(tǒng)的讀寫(xiě)性能。
下載:http://www.iozone.org/src/current/
[root@localhost current]# tar xvf iozone3_420.tar[root@localhost ~]# cd iozone3_420/src/current/[root@localhost current]# make linux[root@localhost current]# ./iozone -a -n 512m -g 16g -i 0 -i 1 -i 5 -f /mnt/iozone -Rb ./iozone.xls
-a使用全自動(dòng)模式
-n為自動(dòng)模式設(shè)置最小文件大小(Kbytes)。
-g設(shè)置自動(dòng)模式可使用的大文件大小Kbytes。
-i用來(lái)指定運(yùn)行哪個(gè)測(cè)試。
-f指定測(cè)試文件的名字完成后自動(dòng)刪除
-R產(chǎn)生Excel到標(biāo)準(zhǔn)輸出
-b指定輸出到指定文件上
IOTop命令是專(zhuān)門(mén)顯示硬盤(pán)IO的命令,界面風(fēng)格類(lèi)似top命令。
[root@localhost ~]# yum -y install iotop
IPtraf是一個(gè)運(yùn)行在Linux下的簡(jiǎn)單的網(wǎng)絡(luò)狀況分析工具。
[root@localhost ~]# yum -y install iptraf
iftop是類(lèi)似于linux下面top的實(shí)時(shí)流量監(jiān)控工具。比iptraf直觀些。
下載:http://www.ex-parrot.com/~pdw/iftop/
[root@localhost ~]# tar zxvf iftop-0.17.tar.gz[root@localhost ~]# cd iftop-0.17 [root@localhost iftop-0.17]# ./configure[root@localhost iftop-0.17]# make && make install[root@localhost iftop-0.17]# iftop [root@localhost iftop-0.17]# iftop -i eth0 #指定監(jiān)控網(wǎng)卡接口
TX:發(fā)送流量
RX:接收流量
TOTAL:總流量
Cumm:運(yùn)行iftop到目前時(shí)間的總流量
peak:流量峰值
rates:分別表示過(guò)去 2s 10s 40s 的平均流量
HTop是一個(gè) Linux 下的交互式的進(jìn)程瀏覽器可以用來(lái)替換Linux下的top命令。
rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm(安裝第三方Y(jié)UM源)
[root@localhost ~]# yum -y install htop
NMON是一種在AIX與各種Linux操作系統(tǒng)上廣泛使用的監(jiān)控與分析工具
下載:http://sourceforge.jp/projects/sfnet_nmon/releases/
[root@localhost ~]# chmod +x nmon_x86_64_rhel6[root@localhost ~]# mv nmon_x86_64_rhel6 /usr/sbin/nmon[root@localhost ~]# nmon
MultiTail是在控制臺(tái)打開(kāi)多個(gè)窗口用來(lái)實(shí)現(xiàn)同時(shí)監(jiān)控多個(gè)日志文檔、類(lèi)似tail命令的功能的軟件。
rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm (安裝第三方Y(jié)UM源)
[root@localhost ~]# yum -y install multitail[root@localhost ~]# multitail -e "fail" /var/log/secure #篩選關(guān)鍵字進(jìn)行監(jiān)控[root@localhost ~]# multitail -l "ping baidu.com" #監(jiān)控后面的命令-l將要執(zhí)行的命令[root@localhost ~]# multitail -i /var/log/messages -i /var/log/secure #-i指定一個(gè)文件名
Fail2ban可以監(jiān)視你的系統(tǒng)日志然后匹配日志的錯(cuò)誤信息正則式匹配執(zhí)行相應(yīng)的屏蔽動(dòng)作一般情況下是調(diào)用防火墻屏蔽
下載:http://www.fail2ban.org/wiki/index.php/Downloads
[root@localhost ~]# cd fail2ban-0.8.11[root@localhost fail2ban-0.8.11]# python setup.py install[root@localhost fail2ban-0.8.11]# cd files/[root@localhost files]# cp ./redhat-initd /etc/init.d/fail2ban[root@localhost files]# service fail2ban start[root@localhost files]# chkconfig --add fail2ban[root@localhost files]# chkconfig fail2ban on
注:需要配置iptables實(shí)用,如果重啟iptables了也要重啟fail2ban,因?yàn)閒ail2ban的原理是調(diào)用iptables實(shí)時(shí)阻擋外界的攻擊。
[root@localhost ~]# grep -v "^#" /etc/fail2ban/jail.conf | grep -v "^$" [DEFAULT]ignoreip = 127.0.0.1/8#忽略本機(jī)IPbantime = 600 #符合規(guī)則后封鎖時(shí)間findtime = 600 #在多長(zhǎng)時(shí)間內(nèi)符合規(guī)則執(zhí)行封鎖如600秒達(dá)到3次則執(zhí)行maxretry = 3 #大嘗試次數(shù)backend = auto #日志修改檢測(cè)日志gamin、polling和auto這三種usedns = warn [ssh-iptables]enabled = true#默認(rèn)是禁用false filter = sshd action = iptables[name=SSH, port=ssh, protocol=tcp] # sendmail-whois[name=SSH,dest=收件人郵箱, sender=發(fā)件人郵箱, sendername="Fail2Ban"] logpath = /var/log/sshd.log #響應(yīng)的錯(cuò)誤日志一般在/var/log/secure maxretry = 5 #嘗試錯(cuò)誤次數(shù)覆蓋全局中的maxretry
注:默認(rèn)所有的應(yīng)用防護(hù)都是關(guān)閉的,需要我們手動(dòng)開(kāi)啟。fail2ban.conf文件是日志信息,jail.conf文件是保護(hù)的具體服務(wù)和動(dòng)作配置信息。
[root@localhost ~]# touch /var/log/sshd.log[root@localhost ~]# service fail2ban restart[root@localhost ~]# fail2ban-client status #查看監(jiān)控已經(jīng)開(kāi)啟 Status |- Number of jail: 1 `- Jail list: ssh-iptables[root@localhost ~]# iptables -L #iptables過(guò)濾表有fail2ban一條規(guī)則 fail2ban-SSH tcp -- anywhere anywhere tcp dpt:ssh
Tmux是一個(gè)優(yōu)秀的終端復(fù)用軟件類(lèi)似GNU Screen比Screen更加方面、靈活和高效。為了確保連接SSH時(shí)掉線不影響任務(wù)運(yùn)行。
rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm(安裝第三方Y(jié)UM源)
下載:http://www.chiark.greenend.org.uk/~sgtatham/agedu/
[root@localhost ~]# tar zxvf agedu-r9723.tar.gz[root@localhost ~]# cd agedu-r9723[root@localhost ~]# ./configure[root@localhost ~]# make && make install[root@localhost ~]# agedu -s / #-s掃描[root@localhost ~]# agedu -w --address 192.168.0.10:80 #-w輸入一個(gè)網(wǎng)頁(yè)鏈接[root@localhost ~]# agedu -w --address 192.168.0.108080 --auth none #--auth關(guān)閉認(rèn)證如果不加端口號(hào)會(huì)生成一個(gè)隨機(jī)的用瀏覽器訪問(wèn)
NMap是Linux下的網(wǎng)絡(luò)連接掃描和嗅探工具包用來(lái)掃描網(wǎng)上電腦開(kāi)放的網(wǎng)絡(luò)連接端。
下載:http://nmap.org/download.html
[root@localhost ~]# tar jxvf nmap-6.40.tar.bz2[root@localhost nmap-6.40]# ./configure[root@localhost nmap-6.40]# make && make install[root@localhost ~]# nmap 192.168.0.10 #獲取基本信息[root@localhost ~]# nmap -O 192.168.0.10 #獲取系統(tǒng)版本信息[root@localhost ~]# nmap -A 192.168.0.10 #獲取系統(tǒng)綜合信息[root@localhost ~]# nmap 192.168.0.0/24 #獲取一個(gè)網(wǎng)段工作設(shè)備基本信息
-sSTCP掃描
-sV系統(tǒng)版本檢測(cè)
Httperf比ab更強(qiáng)大,能測(cè)試出web服務(wù)能承載的大服務(wù)量及發(fā)現(xiàn)潛在問(wèn)題;比如:內(nèi)存使用、穩(wěn)定性。大優(yōu)勢(shì):可以指定規(guī)律進(jìn)行壓力測(cè)試,模擬真實(shí)環(huán)境。
下載:http://code.google.com/p/httperf/downloads/list
[root@localhost ~]# tar zxvf httperf-0.9.0.tar.gz[root@localhost ~]# cd httperf-0.9.0[root@localhost httperf-0.9.0]# ./configure[root@localhost httperf-0.9.0]# make && make install[root@localhost ~]# httperf --hog --server=192.168.0.202 --uri=/index.html --num-conns=10000 --wsess=10,10,0.1
參數(shù)說(shuō)明:
—hog:讓httperf盡可能多產(chǎn)生連接,httperf會(huì)根據(jù)硬件配置,有規(guī)律的產(chǎn)生訪問(wèn)連接;
—num-conns:連接數(shù)量,總發(fā)起10000請(qǐng)求;
—wsess: 用戶打開(kāi)網(wǎng)頁(yè)時(shí)間規(guī)律模擬,第一個(gè)10表示產(chǎn)生10個(gè)會(huì)話連接,第二個(gè)10表示每個(gè)會(huì)話連接進(jìn)行10次請(qǐng)求,0.1表示每個(gè)會(huì)話連接請(qǐng)求之間的間隔時(shí)間/s。
文章題目:Linux 運(yùn)維必備的13款實(shí)用工具,拿好了
文章源于:http://www.rwnh.cn/news26/97976.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、外貿(mào)建站、品牌網(wǎng)站制作、動(dòng)態(tài)網(wǎng)站、用戶體驗(yàn)、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容