Command to restart Squid proxy?

Which command restarts the Squid proxy on Linux distributions?
I tried , is this the right team? squid restart

+3
source share
1 answer

In most cases, services are started through the init system, you can probably restart the service with

/etc/init.d/squid restart

or on debian / ubuntu you should use a utility application

service squid restart

or

service squid3 restart

But maybe we need to translate to tab completion so that it automatically completes to the desired service:

service squid<TAB> restart
+11
source

All Articles