Linux Services | View All | Stopping and Starting
How To see all services available, type in terminal;
sudo service --status-all
How To see all services running and ports, type in terminal;
sudo netstat -plunt
How To remove a service from startup at boot
sudo update-rc.d -f [service] remove
How To enable a service to run on boot
sudo update-rc.d [service] defaults