centos7 设置 查看 开机 启动项
Posted coffee_cn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 设置 查看 开机 启动项相关的知识,希望对你有一定的参考价值。
1.查看开机自启项
centos7自启项已不用chkconfig改为:
systemctl list-unit-files
左边是服务名称,右边是状态,enabled是开机启动,disabled是开机不启动。
当然还可以过滤一下 比如:查看启动项
systemctl list-unit-files | grep enable
2.设置开机自启项
systemctl enable redis
systemctl enable nginx.service
启动nginx
systemctl start nginx.service
结束nginx
systemctl stop nginx.service
重启nginx
systemctl restart nginx.service
以上是关于centos7 设置 查看 开机 启动项的主要内容,如果未能解决你的问题,请参考以下文章