主頁 > 知識庫 > 用systemd-analyze分析Linux系統(tǒng)的啟動性能

用systemd-analyze分析Linux系統(tǒng)的啟動性能

熱門標(biāo)簽:淘寶系統(tǒng)退貨外呼項(xiàng)目考試答案 北京市地圖標(biāo)注 鹽城客服外呼系統(tǒng)軟件 廳外呼梯系統(tǒng)布線 百度地圖標(biāo)注陰影動態(tài) 焦作人工智能電話機(jī)器人軟件 貴陽語音電銷機(jī)器人招商 2020電銷機(jī)器人排行 鄭州營銷外呼系統(tǒng)運(yùn)營商

systemd-analyze是一個(gè)分析啟動性能的工具,用于分析啟動時(shí)服務(wù)時(shí)間消耗。默認(rèn)顯示啟動是內(nèi)核和用戶空間的消耗時(shí)間:
 

復(fù)制代碼
代碼如下:
[root@localhost~]#systemd-analyze
Startupfinishedin818ms(kernel)+6.240s(initrd)+32.979s(userspace)=40.038s
 

和使用systemd-analyzetime命令的效果一樣。


(1)查看詳細(xì)的每個(gè)服務(wù)消耗的啟動時(shí)間


通過systemd-analyzeblame命令查看詳細(xì)的每個(gè)服務(wù)消耗的啟動時(shí)間:
 

復(fù)制代碼
代碼如下:

[root@localhost~]#systemd-analyzeblame
30.852siscsi.service
16.994skdump.service
10.871sboot.mount
...
103mssystemd-sysctl.service
101msdatapool.mount
 

(2)查看嚴(yán)重消耗時(shí)間的服務(wù)樹狀表


systemd-analyzecritical-chain命令打印嚴(yán)重消耗時(shí)間的服務(wù)樹狀表,按照啟動消耗的時(shí)間進(jìn)行排序,時(shí)間消耗越多,越排到前面。@之后是服務(wù)激活或者啟動的時(shí)間,+號之后是服務(wù)啟動消耗的時(shí)間。個(gè)人理解@是從系統(tǒng)引導(dǎo)到服務(wù)啟動起來的時(shí)間,是一個(gè)相對時(shí)間消耗,+是服務(wù)啟動消耗的時(shí)間,是一個(gè)絕對時(shí)間消耗。
 

復(fù)制代碼
代碼如下:

[root@localhost~]#systemd-analyzecritical-chain
Thetimeaftertheunitisactiveorstartedisprintedafterthe"@"character.
Thetimetheunittakestostartisprintedafterthe"+"character.
multi-user.target@32.976s
└─kdump.service@15.981s+16.994s
└─network.target@15.980s
└─NetworkManager.service@15.069s+54ms
└─firewalld.service@14.532s+535ms
└─basic.target@14.532s
└─sockets.target@14.532s
└─dbus.socket@14.532s
└─sysinit.target@14.527s
└─systemd-update-utmp.service@14.524s+2ms
└─systemd-tmpfiles-setup.service@14.456s+67ms
└─local-fs.target@14.447s
└─boot.mount@3.575s+10.871s
└─systemd-fsck@dev-disk-by\x2duuid-8c77568b\x2d7e51\x2d4e32\x2dbbdf\x2ddc12ff737bbf.service@3.348s+226ms
└─systemd-fsck-root.service@1.237s+152ms
└─systemd-readahead-replay.service@1.073s+25ms
 

(3)打印分析圖及其他命令


systemd-analyzeplot打印一個(gè)svg格式的服務(wù)消耗時(shí)間表,通過瀏覽器可以以圖形的方式展示,非常直觀:

復(fù)制代碼
代碼如下:

[root@localhost~]#systemd-analyzeplot>plot.svg
 

其他參數(shù):
systemd-analyzedot用分隔符產(chǎn)生當(dāng)前服務(wù)
systemd-analyzedump以友好方式顯示當(dāng)前服務(wù)狀態(tài)
6systemd文件類型及存放位置
systemd配置文件被稱為unit單元,根據(jù)類型不同,以不同的擴(kuò)展名結(jié)尾。
.service系統(tǒng)服務(wù);
.target一組系統(tǒng)服務(wù);
.automount自動掛載點(diǎn);
.device能被內(nèi)核識別的設(shè)備;
.mount掛載點(diǎn);
.path文件系統(tǒng)的文件或者目錄;
.scope外部創(chuàng)建的進(jìn)程;
.slice一組分層次管理的系統(tǒng)進(jìn)程;
.snapshot系統(tǒng)服務(wù)狀態(tài)管理;
.socket進(jìn)程間通訊套接字;
.swap定義swap文件或者設(shè)備;
.timer定義定時(shí)器。

標(biāo)簽:和田 和田 湖南 開封 淮安 石家莊 馬鞍山 法律問答

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用systemd-analyze分析Linux系統(tǒng)的啟動性能》,本文關(guān)鍵詞  用,systemd-analyze,分析,Linux,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《用systemd-analyze分析Linux系統(tǒng)的啟動性能》相關(guān)的同類信息!
  • 本頁收集關(guān)于用systemd-analyze分析Linux系統(tǒng)的啟動性能的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章