-->

DEVOPSZONES

  • Recent blogs

    FATAL: Bungled /etc/squid/squid.conf line 4: acl manager proto cache_object

    Error:

    2017/01/24 11:39:55| aclParseAclLine: ACL 'manager' already exists with different type.
    FATAL: Bungled /etc/squid/squid.conf line 4: acl manager proto cache_object
    Squid Cache (Version 3.3.8): Terminated abnormally.
    CPU Usage: 0.004 seconds = 0.002 user + 0.002 sys
    Maximum Resident Size: 24832 KB
    Page faults with physical i/o: 0


    Solution:

    1. From 3.2 further configuration cleanups have been done to make things easier and safer. The manager, localhost, and to_localhost ACL definitions are now built-in.

    2. Hence Comment out following Section in your squid config.

    #acl manager proto cache_object
    #acl localhost src 127.0.0.1/32 ::1
    #acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1


    3. Now start the squid service.

    No comments