system v init 執行級別
systemd 目標名稱作用0
runlevel0.target, poweroff.target
關機
1runlevel1.target, rescue.target
單使用者模式
2runlevel2.target, multi-user.target
等同於級別 3
3runlevel3.target, multi-user.target
多使用者的文字介面
4runlevel4.target, multi-user.target
等同於級別 3
5runlevel5.target, graphical.target
多使用者的圖形介面
6runlevel6.target, reboot.target
重啟
emergency
emergency.target
緊急 shell
system v init 命令(rhel 6)
systemctl 命令(rhel 7)
作用service foo start
systemctl start foo.service
啟動服務
service foo restart
systemctl restart foo.service
重啟服務
service foo stop
systemctl stop foo.service
停止服務
service foo reload
systemctl reload foo.service
service foo status
systemctl status foo.service
檢視服務狀態
system v init 命令(rhel 6)
systemctl 命令(rhel 7)
作用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和RHEL6的主要變化
rhel7和rhel6的主要變化 版本rhel7 rhel6 檔案系統 xf t4 核心版本 3.10.x x系列 2.6.x x系列 核心名稱 maipo santiago 發布時間 2014 06 09 3.10.0 123 2010 11 09 2.6.32 71 程序名稱 systemd i...
RHEL 7特性說明(一) 構架和限制
red hat enterprise linux 7.0 是 red hat 的下一代作業系統完整套件,旨在用於關鍵任務企業級計算以及頂級企業級軟體和硬體零售商認證。只有 64 位硬體支援 red hat enterprise linux 7.0 安裝。red hat enterprise linu...
rhel7和centos7的lamp環境搭建
lamp環境的搭建 lamp 是linux apache mysql php的簡寫,其實就是把apache,mysql以及php安裝在linux系統上,組成乙個環境來執行php的指令碼語言。至於什麼是php指令碼語言,筆者不再介紹,請自己查資料吧。apache是最常用的web服務軟體,而mysql是...