vim /etc/rc.d/rc.local
/usr/local/apache/bin/apachectl start
(1)chkconfig --level [0123456] [service name] [on|off]
chkconfig --level 23 dhcp3-server off ----設定dhcp server服務在level2,3下關閉.
(2)chkconfig --list 檢視服務的自動開啟狀態
(3)chkconfig --add 增加乙個服務給chkconfig來管理,但是該服務必須在/etc/init.d內。
服務自啟動 systemctl enable httpd.service
服務不再自啟動 systemctl disable httpd.service
服務狀態 systemctl status httpd,service
加入自定義服務 systemctl load test.service
顯示已啟動的服務 systemctl list-util --type=service(systemctl -t help可以看到type後面可以接的型別)
啟停 systemctl httpd start/stop/restart
systemctl 後的服務名在/lib/systemd/system和/usr/lib/systemd/system目錄檢視
服務的配置檔案在/etc/systemd/system
或/usr/lib/systemd/system/xx.service
而在systemd的管理體系裡面,預設的target(相當於以前的預設執行級別)是通過軟鏈來實現。如:
ln -s /lib/systemd/system/runlevel3.target /etc/systemd/system/default.targ
一旦設定了自動啟動(enbale),就在/etc/systemd/system/.wants/下面建了乙個httpd.service的軟鏈結,連線到/lib/systemd/system/下的相應服務那裡 。
所以顯示自動啟動狀態的unit (類似於chkconfig --list命令的結果),可以通過下面的方法:
#ls /etc/systemd/system/multi-user.target.wants/
CentOS 設定 ogg mgr 開機自啟
試驗環境 試驗環境 軟體版本 作業系統 centos 7 ogg安裝目錄 home oracle ggs 資料庫oracle 建立 info.txt 檔案 oracle custom04 touch info.txt 編輯 info.txt 檔案 oracle custom04 nano info....
centOS 6設定開機自啟
1 利用 chkconfig 來配置啟動級別 在centos或者redhat其他系統下,如果是後面安裝的服務,如httpd mysqld postfix等,安裝後系統預設不會自動啟動的。就算手動執行 etc init.d mysqld start 啟動了服務,只要伺服器重啟後,系統仍然不會自動啟動服...
Centos環境下Nginx設定開機自啟
nginx安裝 這裡使用的是編寫shell指令碼的方式來處理 vi etc init.d nginx 輸入下面的 chmod a x etc init.d nginx這樣在控制台就很容易的操作nginx了 檢視nginx當前狀態 etc init.d nginx status 啟動nginx etc...