Linux Services Reload VS Restart

Linux Services Reload VS Restart

Restarting a Linux a service stops and then restarts the service, it breaks all existing connections to the service by stopping the service, and then restarts the service. Reloading a service on the other hand does not break existing services, it simply reloads the service configuration. and new connections will run based off of the reloaded configuration. Hope you enjoyed!

Restarting a Linux Service

							
							
					sudo systemctl restart <servicename> # or
sudo service <servicename> restart				
			

Reloading a Linux Service

							
							
					sudo systemctl reload <servicename> # or
sudo service <servicename> reload				
			

Walter Miely is a tech entrepreneur and CEO of Phoenix Ignited Tech You can find him on Linkedin. This material is licensed under the CC BY 4.0 License LEGAL DISCLAIMER: The content provided here is provided AS IS, and part of, or the entirety of this content may be incorrect. Please read the entireLegal Disclaimer here.