Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Command to restart Squid proxy server? [closed]

What command restarts the Squid proxy server on Linux distros?
I have tried squid restart, is that the correct command?

like image 414
vincy Avatar asked May 13 '11 16:05

vincy


1 Answers

Most of the time services are started via the init system you can probably restart your service with

/etc/init.d/squid restart

or on debian / ubuntu you should use the service application

service squid restart

or

service squid3 restart

But maybe we should relay on tab completion to auto complete to the proper service:

service squid<TAB> restart
like image 66
DipSwitch Avatar answered Nov 16 '22 13:11

DipSwitch