服务
• chkconfig
service --status-all
servicemysql start
service mysql restart
service mysql stop
service mysql status
chkconfig --list
chkconfig --add httpd
chkconfig httpd on
chkconfig httpd off
• systemctl
systemctl start redis.service
systemctl restart redis.service
systemctl stop redis.service
systemctl status redis.service
systemctl enable redis.service
systemctl list-units
systemctl enable httpd.service
systemctl disable httpd.service
daemon 守护进程,后缀通常为d,如:httpd