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?
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
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.
add a comment |
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
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
add a comment |
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
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
ubuntu cache squid
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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.
add a comment |
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 23 '17 at 18:38
JPXJPX
1113
1113
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 24 '17 at 9:28
Antonello PiemonteAntonello Piemonte
1
1
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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