How to manage server services startup using systemctl

Use systemctl to manage server services startup in CentOS7.

## To enable auto startup
systemctl enable SERVICENAME.service

## To disable auto startup
systemctl disable SERVICENAME.service

## To list all services registered to systemctl
systemctl list-unit-files -t service

## Ask status of a service
systemctl is-enabled SERVICENAME.service