标签:stop 描述 重启 type 停止 查看 linux ble 常用
常用命令
描述 旧命令 新命令
使服务自动启动 chkconfig --level 3 http on systemctl enable 服务名.service systemctl enable httpd.service
使服务不自动启动 chkconfig --level 3httpd off systemctl disable 服务名.sevice
查看服务章台 service httpd status systemctl status httpd.service systemctl is-active httpd.service
查看所有已启动的服务 chkconfig --list systemctl list-units --type=service
启动服务 service httpd start systemctl start httpd.service
停止服务 service httpd stop systemctl stop httpd.service
重启服务 service httpd restart systemctl restart httpd.service
标签:stop 描述 重启 type 停止 查看 linux ble 常用
原文地址:http://www.cnblogs.com/xianhaiyan/p/7650391.html