加入开机启动的命令,如下:
1.查看开机启动项
chkconfig --list
这里看到httpd和mysqld未设置开机自动启动
2.设置开机启动:
chkconfig httpd on
3.如果在列表里找不到要启动的服务,则手动添加上去:
chkconfig --add sveserve
4.取消开机启动:
chkconfig httpd off
1.查看开机启动项
chkconfig --list
这里看到httpd和mysqld未设置开机自动启动
2.设置开机启动:
chkconfig httpd on
3.如果在列表里找不到要启动的服务,则手动添加上去:
chkconfig --add sveserve
4.取消开机启动:
chkconfig httpd off