时间:2020-10-07 14:25:43 | 栏目:Linux | 点击:次
在linux系统中,安装完一个软件或应用后,有时候需要手动启动该应用,也需要收到将该应用添加到开机启动项中,让其可以能够在linux一开机后就加载该应用
启动应用的方法
CentOS 6 :
service SERVICE start|stop|restart|reload|status
CentOS 7 :
systemctl start|stop|restart|reload|status SERVICE
添加到开机启动项的方法
CentOS 6 :
chkconfig SERVICE on|off
CentOS 7 :
systemctl enable|disable SERVICE