Squid cache not starting in Ubuntu 16.04.2 LTS The Next CEO of Stack OverflowUbuntu 9.10 and Squid 2.7 Transparent Proxy TCP_DENIEDSquid, allow access to local servers not remote serversVPN client blocked through squid serverSquid2 on Debian 6 - No connection to the proxysquid slow initial webpage loadingsquid ssl bump sslv3 enforce to allow old sitesTwo transparent gateway using squid return 403HTTPS Content Filtering without de-crypting traffic using squid?how to allow externall network to use my squidHow to configure squid-cache for this Payload?

Is it okay to majorly distort historical facts while writing a fiction story?

Reference request: Grassmannian and Plucker coordinates in type B, C, D

Is a distribution that is normal, but highly skewed considered Gaussian?

The past simple of "gaslight" – "gaslighted" or "gaslit"?

Why do airplanes bank sharply to the right after air-to-air refueling?

Why specifically branches as firewood on the Altar?

Is it professional to write unrelated content in an almost-empty email?

A Man With a Stainless Steel Endoskeleton (like The Terminator) Fighting Cloaked Aliens Only He Can See

Should I tutor a student who I know has cheated on their homework?

How to check if all elements of 1 list are in the *same quantity* and in any order, in the list2?

Does increasing your ability score affect your main stat?

TikZ: How to reverse arrow direction without switching start/end point?

A small doubt about the dominated convergence theorem

Can we say or write : "No, it'sn't"?

How I can get glyphs from a fraktur font and use them as identifiers?

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

Chain wire methods together in Lightning Web Components

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

0-rank tensor vs vector in 1D

Are police here, aren't itthey?

Grabbing quick drinks

What does "Its cash flow is deeply negative" mean?

Why the difference in type-inference over the as-pattern in two similar function definitions?

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?



Squid cache not starting in Ubuntu 16.04.2 LTS



The Next CEO of Stack OverflowUbuntu 9.10 and Squid 2.7 Transparent Proxy TCP_DENIEDSquid, allow access to local servers not remote serversVPN client blocked through squid serverSquid2 on Debian 6 - No connection to the proxysquid slow initial webpage loadingsquid ssl bump sslv3 enforce to allow old sitesTwo transparent gateway using squid return 403HTTPS Content Filtering without de-crypting traffic using squid?how to allow externall network to use my squidHow to configure squid-cache for this Payload?










0















I'm trying to start Squid (3.5.12) by the following command:



$ /etc/init.d/squid start

[ ok ] Starting squid (via systemctl): squid.service.


but only one line appears in cache.log, and nothing else:



2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache


I did run squid -z.



My squid.conf looks as shown below:



acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 8080
maximum_object_size 100 MB
cache_mem 512 MB
maximum_object_size_in_memory 128 MB
cache_dir ufs /var/spool/squid/cache 20000 16 256
cache_swap_low 96
cache_swap_high 97
forwarded_for transparent
coredump_dir /var/spool/squid/cache
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
dns_nameservers 192.168.1.1
cache_effective_user proxy
cache_effective_group proxy









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    If squid is running, stop it, then try running /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf attempt to start it directly from a shell. You might also add a -d1 to print extra debugging information. Look for errors and messages. Fix whatever errors you find, or edit into your post any ones you don't understand.

    – Zoredache
    Mar 23 '17 at 18:03
















0















I'm trying to start Squid (3.5.12) by the following command:



$ /etc/init.d/squid start

[ ok ] Starting squid (via systemctl): squid.service.


but only one line appears in cache.log, and nothing else:



2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache


I did run squid -z.



My squid.conf looks as shown below:



acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 8080
maximum_object_size 100 MB
cache_mem 512 MB
maximum_object_size_in_memory 128 MB
cache_dir ufs /var/spool/squid/cache 20000 16 256
cache_swap_low 96
cache_swap_high 97
forwarded_for transparent
coredump_dir /var/spool/squid/cache
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
dns_nameservers 192.168.1.1
cache_effective_user proxy
cache_effective_group proxy









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    If squid is running, stop it, then try running /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf attempt to start it directly from a shell. You might also add a -d1 to print extra debugging information. Look for errors and messages. Fix whatever errors you find, or edit into your post any ones you don't understand.

    – Zoredache
    Mar 23 '17 at 18:03














0












0








0








I'm trying to start Squid (3.5.12) by the following command:



$ /etc/init.d/squid start

[ ok ] Starting squid (via systemctl): squid.service.


but only one line appears in cache.log, and nothing else:



2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache


I did run squid -z.



My squid.conf looks as shown below:



acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 8080
maximum_object_size 100 MB
cache_mem 512 MB
maximum_object_size_in_memory 128 MB
cache_dir ufs /var/spool/squid/cache 20000 16 256
cache_swap_low 96
cache_swap_high 97
forwarded_for transparent
coredump_dir /var/spool/squid/cache
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
dns_nameservers 192.168.1.1
cache_effective_user proxy
cache_effective_group proxy









share|improve this question
















I'm trying to start Squid (3.5.12) by the following command:



$ /etc/init.d/squid start

[ ok ] Starting squid (via systemctl): squid.service.


but only one line appears in cache.log, and nothing else:



2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache


I did run squid -z.



My squid.conf looks as shown below:



acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
acl localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 8080
maximum_object_size 100 MB
cache_mem 512 MB
maximum_object_size_in_memory 128 MB
cache_dir ufs /var/spool/squid/cache 20000 16 256
cache_swap_low 96
cache_swap_high 97
forwarded_for transparent
coredump_dir /var/spool/squid/cache
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
dns_nameservers 192.168.1.1
cache_effective_user proxy
cache_effective_group proxy






ubuntu cache squid






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 '17 at 8:17









techraf

3,34381735




3,34381735










asked Mar 23 '17 at 17:02









JPXJPX

1113




1113





bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.









  • 1





    If squid is running, stop it, then try running /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf attempt to start it directly from a shell. You might also add a -d1 to print extra debugging information. Look for errors and messages. Fix whatever errors you find, or edit into your post any ones you don't understand.

    – Zoredache
    Mar 23 '17 at 18:03













  • 1





    If squid is running, stop it, then try running /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf attempt to start it directly from a shell. You might also add a -d1 to print extra debugging information. Look for errors and messages. Fix whatever errors you find, or edit into your post any ones you don't understand.

    – Zoredache
    Mar 23 '17 at 18:03








1




1





If squid is running, stop it, then try running /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf attempt to start it directly from a shell. You might also add a -d1 to print extra debugging information. Look for errors and messages. Fix whatever errors you find, or edit into your post any ones you don't understand.

– Zoredache
Mar 23 '17 at 18:03






If squid is running, stop it, then try running /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf attempt to start it directly from a shell. You might also add a -d1 to print extra debugging information. Look for errors and messages. Fix whatever errors you find, or edit into your post any ones you don't understand.

– Zoredache
Mar 23 '17 at 18:03











2 Answers
2






active

oldest

votes


















0














Solution was not to use /etc/init.d/squid start .



service squid restart is working ok.



Don't know why line 2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache appeared in logs.






share|improve this answer






























    0














    Current Ubuntu LTS (16.04) system services should be best managed via systemd which means in your case that to start, check status, stop squid you would use (respectively):



    # systemctl start squid
    # systemctl status squid
    # systemctl stop squid


    the service command is also still supported for backward System V compatibility, but it might disappear in the future. Running services by invoking directly



    # /etc/init.d/servicename


    is not supported/recommended.






    share|improve this answer























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "2"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f840226%2fsquid-cache-not-starting-in-ubuntu-16-04-2-lts%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Solution was not to use /etc/init.d/squid start .



      service squid restart is working ok.



      Don't know why line 2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache appeared in logs.






      share|improve this answer



























        0














        Solution was not to use /etc/init.d/squid start .



        service squid restart is working ok.



        Don't know why line 2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache appeared in logs.






        share|improve this answer

























          0












          0








          0







          Solution was not to use /etc/init.d/squid start .



          service squid restart is working ok.



          Don't know why line 2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache appeared in logs.






          share|improve this answer













          Solution was not to use /etc/init.d/squid start .



          service squid restart is working ok.



          Don't know why line 2017/03/23 18:44:40| Set Current Directory to /var/spool/squid/cache appeared in logs.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 23 '17 at 18:38









          JPXJPX

          1113




          1113























              0














              Current Ubuntu LTS (16.04) system services should be best managed via systemd which means in your case that to start, check status, stop squid you would use (respectively):



              # systemctl start squid
              # systemctl status squid
              # systemctl stop squid


              the service command is also still supported for backward System V compatibility, but it might disappear in the future. Running services by invoking directly



              # /etc/init.d/servicename


              is not supported/recommended.






              share|improve this answer



























                0














                Current Ubuntu LTS (16.04) system services should be best managed via systemd which means in your case that to start, check status, stop squid you would use (respectively):



                # systemctl start squid
                # systemctl status squid
                # systemctl stop squid


                the service command is also still supported for backward System V compatibility, but it might disappear in the future. Running services by invoking directly



                # /etc/init.d/servicename


                is not supported/recommended.






                share|improve this answer

























                  0












                  0








                  0







                  Current Ubuntu LTS (16.04) system services should be best managed via systemd which means in your case that to start, check status, stop squid you would use (respectively):



                  # systemctl start squid
                  # systemctl status squid
                  # systemctl stop squid


                  the service command is also still supported for backward System V compatibility, but it might disappear in the future. Running services by invoking directly



                  # /etc/init.d/servicename


                  is not supported/recommended.






                  share|improve this answer













                  Current Ubuntu LTS (16.04) system services should be best managed via systemd which means in your case that to start, check status, stop squid you would use (respectively):



                  # systemctl start squid
                  # systemctl status squid
                  # systemctl stop squid


                  the service command is also still supported for backward System V compatibility, but it might disappear in the future. Running services by invoking directly



                  # /etc/init.d/servicename


                  is not supported/recommended.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 24 '17 at 9:28









                  Antonello PiemonteAntonello Piemonte

                  1




                  1



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Server Fault!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f840226%2fsquid-cache-not-starting-in-ubuntu-16-04-2-lts%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                      Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                      What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company