自動(dòng)啟動(dòng)設(shè)置有setup 由桌、rc.local 沃呢、chkconfig和systemctl等幾種方式:
一蚌斩、setup
可以在shell圖形終端里面配置的命令峻呕,去service里選擇
二吻商、rc.local
把啟動(dòng)命令放到/etc/rc.d/rc.local文件里掏颊,如:
#sshd
/usr/local/sbin/sshd
#proftpd
/usr/local/sbin/proftpd
#apache
/home/apache/bin/apachectl start
#mysql
/home/mysql/bin/safe_mysqld --port=3306 &
#start oracle8i listener first
su - oracle -c 'lsnrctl start'
#start oracle8i
su - oracle -c 'dbstart'
三、chkconfig
chkconfig --list? ? 顯示開機(jī)可以自動(dòng)啟動(dòng)的服務(wù)
chkconfig --add *** 添加開機(jī)自動(dòng)啟動(dòng)***服務(wù)
chkconfig --del ***?? 刪除開機(jī)自動(dòng)啟動(dòng)***服務(wù)
四、systemctl
systemctl enable httpd.service #開機(jī)啟動(dòng)
systemctl disable httpd.service #開機(jī)不啟動(dòng)