在centos7中用的全新服務啟動管理器 systemctl
在centos6做服務的啟停用service
systemctl 代替service+chkconfig
在centos6中只需要把啟動的服務檔案放到/etc/ini.d目錄下就可以了,但是在centos7中怎麼處理了?
檢視服務列表狀態:
systemctl list-units --type=service
systemctl list-unit-files
開啟自啟動服務: systemctl enable mysqld
開啟禁止啟動服務: systemctl disable mysqld
檢視開機啟動: systemctl is-enabled mysqld
啟用服務就是在當前「runlevel」的配置檔案目錄 /etc/systemd/system/multi-user.target.wants 裡,建立 /usr/lib/systemd/system 裡面對應服務配置檔案的軟鏈結;
禁用服務就是刪除此軟鏈結,新增服務就是新增軟連線。
/etc/systemd/system/multi-user.target.wants
/usr/lib/systemd/system
修改檔案 /etc/inittab id:3:initdefault:
systemctl stop firewalld # 臨時關閉防火牆
systemctl disable firewalld # 禁止開機啟動
centos7使用筆記
檢視核心版本 uname a 檢視發行版本 cat etc elease 設定靜態ip cd etc sysconfig network scripts 看到類似這樣的乙個檔案 ifcfg eno16777736 vim ifcfg eno16777736 修改如下 bootproto改為stati...
centos7使用筆記(一)
首先,在已經裝有win7系統的電腦上安裝centos7,安裝步驟略過。一 配置雙系統啟動項 1 安裝完成centos7後,啟動電腦,出現的啟動選項中沒有win7,只能從centos7啟動。2 先進入centos7中配置grub檔案 一般不要直接去修改grub.conf檔案,在 etc grb.d 4...
centos7應用筆記 鍵盤重影射
我的鍵盤右shift鍵無法使用了。想使用右alt鍵代替。查詢了一下 xmodmap 命令可以實現該功能。以下是我的配置方法的記錄。建立乙個 xmodmap 配置檔案 etc xmodmap.config xmodmap 配置檔案內容 swap alt r and shift r remove shi...