linux系統(tǒng)下經(jīng)常需要查看服務(wù)的狀態(tài)和啟停用服務(wù),下面介紹下如何快速得找到服務(wù)并實現(xiàn)啟停用。
進(jìn)入linux系統(tǒng)后,在普通用戶模式下輸入su - 輸入密碼linux常用命令,切換到root用戶下。
查看linux系統(tǒng)下所有的服務(wù),使用命令:chkconfig --list
[oracle@localhost network-scripts]$ chkconfig --list
NetworkManager 0:off1:off2:on3:on4:on5:on6:off
abrt-ccpp 0:off1:off2:off3:on4:off5:on6:off
abrtd 0:off1:off2:off3:on4:off5:on6:off
acpid 0:off1:off2:on3:on4:on5:on6:off
atd 0:off1:off2:off3:on4:on5:on6:off
auditd 0:off1:off2:on3:on4:on5:on6:off
blk-availability0:off1:on2:on3:on4:on5:on6:off
bluetooth 0:off1:off2:off3:on4:on5:on6:off
cpuspeed 0:off1:on2:on3:on4:on5:on6:off
crond 0:off1:off2:on3:on4:on5:on6:off
查看一個服務(wù)的狀態(tài),如查看ntpd服務(wù)的狀態(tài),使用命令:service ntpd status
[root@localhost network-scripts]# service sshd status
openssh-daemon (pid 6406) is running...
停止一個服務(wù)linux常用命令,(系統(tǒng)重啟后,該配置不生效)如停止ntpd服務(wù),使用命令:service ntpd stop
啟動一個服務(wù),(系統(tǒng)重啟后,該配置不生效)如啟動ntp服務(wù),使用命令:service ntpd start
linux如何關(guān)閉防火墻