1. 程式人生 > >ssh服務遠程管理主機

ssh服務遠程管理主機

led 是否 所有 管理工具 系統負載 conn ns3 any 使用

一、管理服務命令systemctl

1)systemctl管理服務的啟動、重啟、停止、重載、查看狀態命令如下:

sysvinit命令        systemctl命令         作用

service foot start      systemctl start foot.service   啟動服務

service foot restart     systemctl restar foot.service  重啟服務

service foot stop      systemctl stop foot.service   重啟服務

service foot reload     systemctl reload foot.service  重新加載配置文件

service foot status      systemctl status foot.service  查看服務狀態

2)systemctl設置服務開機啟動、不啟動、查看各級別下服務狀態

sysvinit命令        systemctl命令         作用

chkconfig foot on      systemctl enable foot.service  開機自動啟動

chkconfig foot off      systemctl disable foot.service  開機不自動啟動

chkconfig foo        systemctl is-enabled foot.service 查看特定服務是否為開機自動啟動

chkconfig --list       systemctl list-unit-files --type=service  查看各級別下服務的啟動與禁用狀態

二、監視資源與管理進程

1)ps命令查看系統中進程的狀態,格式為:ps -[參數]

-a 顯示所有信息

2)top命令用於監視進程的活動與系統負載

3)pidof命令用於查看系統某個特定進程的PID值,格式為:pidof [參數] [程序名稱]

4)kill命令用於終止某個特定PID號的進程,格式為:kill [進程PID號]

5)killall命令用於終止某個特定PID號的所有進程

三、網卡參數配置

1)使用vi 、vim編輯器配置網卡

2)使用nmtui管理工具進入圖形化界面配置網卡參數

3)nmcli命令查看網卡信息,例:nmcli connection show查看網絡連接信息,nmcli device stattus 查看網卡連接狀態

添加會話:nmcli connection add con-name company type ethernet ifname ens33

啟用公司會話:nmcli connection up conpany

查看會話狀態:nmcli connection show

ssh服務遠程管理主機