1
vote
Accepted
On MacOS brew service doesn't start on reboot if started as a user
It looks like brew doesn't support running "launch daemons" - it can only manage "launch agents" (this Apple documentation delves a bit into the difference between "agents&...
1
vote
Accepted
Homebrewed http start fails on macOS Big Sur
Can you follow the instructions here:
https://stackoverflow.com/questions/64912014/mac-os-big-sur-homebrew-apache-48address-already-in-use-ah00072-make-sock
Hopefully you or someone else might find it ...
1
vote
brew install squid on macOS but can't run squid
Generally, the standard squid -z approach seems to work, after taking care of the permission issue
brew install squid
vim /usr/local/etc/squid.conf
sudo mkdir /var/spool/squid
sudo chown -R myuser:...
1
vote
brew install squid on macOS but can't run squid
My workaround is to add this attributes to squid.conf file
access_log stdio:/tmp/squid.log
cache_log /tmp/squid-cache.log
and create this folder
sudo mkdir /var/spool/squid
finally run
sudo /usr/...
Only top scored, non community-wiki answers of a minimum length are eligible