如何使用centos7启动服务?

时间:2016-06-21 10:02:02

标签: service init centos7

我在Centos 7上使用安装作为init.d服务(System V)来提供服务。

我希望在重启后服务自动启动。

我该怎么做?。

谢谢,我试过了:

1- /sbin/chkconfig --add my-service
2- /sbin/chkconfig --on my-service                    
3- chkconfig --list:my-service 0:off   1:off   2:on    3:on    4:on    5:on 6:off                                                          
4- /sbin/service my-service start                                         
5- reboot centos7                                                    
6- /sbin/service my-service status: Not running                          
The service does not start automatically

1 个答案:

答案 0 :(得分:1)

systemd的正确方法是:

switch (passed) {
                    case 0:
                    case 1:
                        strength = "Weak";
                        color = "red";
                        break;
                    case 2:
                        strength = "Good";
                        color = "darkorange";
                        break;
                    case 4:
                        strength = "Strong";
                        color = "green";
                        break;
                    case 5:
                        strength = "Very Strong";
                        color = "darkgreen";
                        break;                        
                }

如果它是一个initv服务,你可以使用chkconfig(也许安装它)