Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LinuxディストリビューションでSquidプロキシサーバーを再起動するコマンドはどれですか? 私は試しsquid restartましたが、それは正しいコマンドですか?
squid restart
ほとんどの場合、サービスは init システムを介して開始され、おそらくサービスを再起動できます
/etc/init.d/squid restart
またはdebian / ubuntuでは、サービスアプリケーションを使用する必要があります
service squid restart
また
service squid3 restart
しかし、適切なサービスへのオートコンプリートにタブ補完をリレーする必要があるかもしれません:
service squid<TAB> restart