专治健忘症
以Apache HTTP服务为例:
添加开机启动
开机启动http服务
1 | systemctl enable httpd |
添加手动安装的服务,如nginx,可参考该文。
删除开机启动
删除开机启动http服务
1 | systemctl disable httpd |
查看所有开机启动的服务
1 | systemctl list-unit-files | grep enabled |
专治健忘症
以Apache HTTP服务为例:
开机启动http服务
1 | systemctl enable httpd |
添加手动安装的服务,如nginx,可参考该文。
删除开机启动http服务
1 | systemctl disable httpd |
1 | systemctl list-unit-files | grep enabled |