centos大概是rhel的精簡版本,命令是一樣的
作用system v init命令(rhel6系統)
systemctl命令(rhel7系統)
啟動服務
service foo start
systemctl start foo.service
停止服務
service foo stop
systemctl stop foo.service
重啟服務
service foo restart
systemctl restart foo.service
service foo reload
systemctl reload foo.service
檢視服務狀態
service foo status
systemctl status foo.service 作用
system v init命令(rhel6系統)
systemctl命令(rhel7系統)
開機自動啟動
chkconfig foo on
systemctl enable foo.service
開機不自動啟動
chkconfig foo off
systemctl disable foo.service
檢視服務是否開機啟動
chkconfig foo
systemctl is-enabled foo.service
檢視各個級別下服務的啟動與禁用情況
chkconfig --list
systemctl list-unit-files --type=service
rhel7 Centos 7密碼重置方法
centos7 rhel7進入單使用者方式和重置密碼方式發生了較大變化,grub由b引導變成了ctrl x引導。重置密碼主要有rd.break和init兩種方法。rd.break方法 1 啟動的時候,在啟動介面,相應啟動項,核心名稱上按 e 2 進入後,找到linux16開頭的地方,按 end 鍵到...
如何重置 RHEL7 CentOS7 系統的密碼
介紹 目的 在 rhel7 centos7 scientific linux 7 中重設 root 密碼。要求 rhel7 centos7 scientific linux 7 困難程度 中等指導 rhel7 的世界發生了變化,重置 root 密碼的方式也一樣。雖然中斷引導過程的舊方法 init b...
RHEL7 CentOS7中更改網絡卡預設名稱
一台centos 7.2虛擬機器 操作步驟 方法一 1.更改網絡卡配置檔案的名字 cd etc sysconfig network scripts network scripts mv ifcfg eno33559296ifcfg eth0 2.編輯網絡卡ifcfg eth0資訊 3.修改 etc ...