Erro squid, para depois de alguns segundos [RESOLVIDO]

1. Erro squid, para depois de alguns segundos [RESOLVIDO]

Julio Cesar
jcesarstef

(usa Slackware)

Enviado em 23/09/2014 - 13:45h

Boa tarde, estou configurando um servidor proxy com o squid, e o processo esta parando depois de alguns segundos on.
OBS: CentOS instalação minimal

Segue arquivo squid.conf:

#
# Recommended minimum configuration:
#

# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed

#Porta de escuta do squid
http_port 3128
visible_hostname centos
pid_filename /usr/etc/squid/squid.pid
################################
#AUTENTICACAO
################################
#Programa para fazer a auntenticação dos usuarios seguido do arquivo de senhas
#auth_param basic program /usr/libexec/basic_ncsa_auth /usr/etc/autenticacao/passwd
#desativa o case sensitive para o username
#auth_param basic casesensitive off

#same helper in parallel without waiting for the response.
#Must not be set unless it's known the helper supports this.
#auth_param basic children 20 startup=0 idle=1

#indentifica para o cliente quem esta fazendo a solicitação
#auth_param basic realm Squid proxy-caching web server Doppelganger teste 1


#acl responsavel pelo controle de autenticação
#acl auth_users proxy_auth REQUIRED
#indica o arquivo que contera os usuarios e senhas
#acl auth_users proxy_auth "/usr/etc/squid/autenticacao/usuarios"

#habilita o acesso mediante o uso da acl criada
#http_access allow password
#BLOQUEIA TODO O RESTO
#http_access deny all


#Identifica para o cliente quem esta fazendo a solicitação de autenticação (caixa de texto)
#NÃO FUNCIONA!
#proxy_auth_realm "Digite seu usuário e senha de acesso a internet"

################################


#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.1.0/24 # 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

##################
acl urls_bloqueados url_regex -i /usr/etc/squid/urls_bloqueados

http_access deny urls_bloqueados

###########
#Acesso sem passar pelo squid
############
#cria a acl sitesespecias direcionada a uma url_regex no arquivo "outsquid"
#-i desativa o case sensitive
acl sitesespeciais url_regex -i /usr/etc/squid/urls_outsquid
#permite o acesso direto a todos os itens dentro da acl sitesespciais
always_direct allow sitesespeciais

#PORTAS QUE NÃO VAO PASSAR PELO SQUID
#criada acl ports_outsquid para todas as portas a seguir
acl ports_outsquid port 25 110 587 143

#nao faz o cache das seguintes acl's
no_cache deny sitesespeciais
no_cache deny ports_outsquid
#permite o acesso direto a todos os itens das acl's abaixo sem passar pelo proxy
always_direct allow sitesespeciais
always_direct allow ports_outsquid


######################################

#
# Recommended minimum Access Permission configuration:
#
# Deny requests to certain unsafe ports
http_access deny !Safe_ports

# Deny CONNECT to other than secure SSL ports
http_access deny CONNECT !SSL_ports

# Only allow cachemgr access from localhost
http_access allow localhost manager
http_access deny manager

# We strongly recommend the following be uncommented to protect innocent
# web applications running on the proxy server who think the only
# one who can access services on "localhost" is a local user
#http_access deny to_localhost

#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#

# Example rule allowing access from your local networks.
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
http_access allow localnet
http_access allow localhost

# And finally deny all other access to this proxy
http_access deny all

#################################
#CACHE
##################################

#Usuario utilizado para fazer o cache
#cache_effective_user nobody
#diretorio do cache
#onde 100 é o tamanho do cache em MB
#16 é a quantidade de diretorios pais
#256 é a quantidade de diretorios em cada diretorio pai
#"ufs" is the old well-known Squid storage format that has always been there.
#pode-se anexar varias entradas cache_dir para selecionar varios diretórios ao cache
cache_dir ufs /cache 100 16 256

#Tamanho max do objeto que sera salvo no disco
maximum_object_size 4 MB
cache_mem 512 MB
cache_swap_low 90
cache_swap_high 95


# Leave coredumps in the first cache dir
coredump_dir /usr/var/cache/squid


###################################
#
# Add any of your own refresh_pattern entries above these.
#

#FREQUENCIA DE ATUALIZAÇÃO do 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


############
#LOG's
############
cache_access_log /usr/etc/squid/log/access.log
cache_log /usr/etc/squid/log/cache.log
cache_store_log /usr/etc/squid/log/store.log
cache_swap_log /usr/etc/squid/log/swap.log
#nao existe?
#error_directory









Quando uso o squid -X aparece a seguinte mensagem:



[root@centos log]# squid -X
2014/09/23 13:43:48.365| debug.cc(425) parseOptions: command-line -X overrides: ALL,7
2014/09/23 13:43:48.365| cache_manager.cc(102) registerProfile: registering legacy mem
2014/09/23 13:43:48.365| cache_manager.cc(136) findAction: CacheManager::findAction: looking for action mem
2014/09/23 13:43:48.365| cache_manager.cc(144) findAction: Action not found.
2014/09/23 13:43:48.365| cache_manager.cc(87) registerProfile: registered profile: mem
2014/09/23 13:43:48.366| cache_manager.cc(102) registerProfile: registering legacy squidaio_counts
2014/09/23 13:43:48.366| cache_manager.cc(136) findAction: CacheManager::findAction: looking for action squidaio_counts
2014/09/23 13:43:48.366| cache_manager.cc(144) findAction: Action not found.
2014/09/23 13:43:48.366| cache_manager.cc(87) registerProfile: registered profile: squidaio_counts
2014/09/23 13:43:48.366| cache_manager.cc(136) findAction: CacheManager::findAction: looking for action diskd
2014/09/23 13:43:48.366| cache_manager.cc(144) findAction: Action not found.
2014/09/23 13:43:48.366| cache_manager.cc(87) registerProfile: registered profile: diskd
2014/09/23 13:43:48.366| rock/RockStoreFileSystem.cc(44) setup: Will use Rock FS
2014/09/23 13:43:48.366| Startup: Initializing Authentication Schemes ...
2014/09/23 13:43:48.366| Startup: Initialized Authentication Scheme 'basic'
2014/09/23 13:43:48.366| Startup: Initialized Authentication Scheme 'digest'
2014/09/23 13:43:48.366| Startup: Initialized Authentication Scheme 'negotiate'
2014/09/23 13:43:48.366| Startup: Initialized Authentication Scheme 'ntlm'
2014/09/23 13:43:48.366| Startup: Initialized Authentication.
2014/09/23 13:43:48.377| tools.cc(69) ProbeTransport: Detected IPv6 hybrid or v4-mapping stack...
2014/09/23 13:43:48.378| tools.cc(83) ProbeTransport: IPv6 transport Enabled
2014/09/23 13:43:48.378| Config.cc(39) registerTokens: register format tokens for 'ssl'
2014/09/23 13:43:48.378| cache_cf.cc(608) parseConfigFile:
2014/09/23 13:43:48.378| cf_parser.cci(4061) free_all:
2014/09/23 13:43:48.379| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type ssl_error
2014/09/23 13:43:48.379| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.379| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certHasExpired'
2014/09/23 13:43:48.379| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.379| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'ssl::certHasExpired'
2014/09/23 13:43:48.379| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'ssl_error'
2014/09/23 13:43:48.379| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d22b0
2014/09/23 13:43:48.379| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type ssl_error
2014/09/23 13:43:48.379| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.379| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certNotYetValid'
2014/09/23 13:43:48.379| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.379| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'ssl::certNotYetValid'
2014/09/23 13:43:48.379| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'ssl_error'
2014/09/23 13:43:48.379| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d23d0
2014/09/23 13:43:48.380| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type ssl_error
2014/09/23 13:43:48.380| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.380| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certDomainMismatch'
2014/09/23 13:43:48.380| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.380| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'ssl::certDomainMismatch'
2014/09/23 13:43:48.380| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'ssl_error'
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d24e8
2014/09/23 13:43:48.380| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type ssl_error
2014/09/23 13:43:48.380| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.380| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certUntrusted'
2014/09/23 13:43:48.380| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.380| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'ssl::certUntrusted'
2014/09/23 13:43:48.380| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'ssl_error'
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d2698
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d2670
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d26b8
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d26d8
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d26f8
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d2718
2014/09/23 13:43:48.380| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type ssl_error
2014/09/23 13:43:48.380| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.380| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certSelfSigned'
2014/09/23 13:43:48.380| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.380| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'ssl::certSelfSigned'
2014/09/23 13:43:48.380| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'ssl_error'
2014/09/23 13:43:48.380| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d2848
2014/09/23 13:43:48.380| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type src
2014/09/23 13:43:48.380| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.380| Acl.cc(118) FindByName: ACL::FindByName 'all'
2014/09/23 13:43:48.380| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.380| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'all'
2014/09/23 13:43:48.380| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'src'
2014/09/23 13:43:48.381| Ip.cc(260) FactoryParse: aclIpParseIpData: all
2014/09/23 13:43:48.381| Ip.cc(264) FactoryParse: aclIpParseIpData: magic 'all' found.
2014/09/23 13:43:48.381| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type url_regex
2014/09/23 13:43:48.381| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.381| Acl.cc(118) FindByName: ACL::FindByName 'manager'
2014/09/23 13:43:48.381| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.381| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'manager'
2014/09/23 13:43:48.381| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'url_regex'
2014/09/23 13:43:48.381| RegexData.cc(323) aclParseRegexList: aclParseRegexList: new Regex line or file
2014/09/23 13:43:48.381| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '-i'
2014/09/23 13:43:48.381| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '^cache_object://'
2014/09/23 13:43:48.381| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '+i'
2014/09/23 13:43:48.381| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '^https?://[^/]+/squid-internal-mgr/'
2014/09/23 13:43:48.381| RegexData.cc(214) compileOptimisedREs: compileOptimisedREs: -i
2014/09/23 13:43:48.382| RegexData.cc(238) compileOptimisedREs: compileOptimisedREs: adding RE '^cache_object://'
2014/09/23 13:43:48.382| RegexData.cc(228) compileOptimisedREs: compileOptimisedREs: +i
2014/09/23 13:43:48.382| RegexData.cc(173) compileRE: compileRE: compiled '(^cache_object://)' with flags 11
2014/09/23 13:43:48.382| RegexData.cc(238) compileOptimisedREs: compileOptimisedREs: adding RE '^https?://[^/]+/squid-internal-mgr/'
2014/09/23 13:43:48.382| RegexData.cc(173) compileRE: compileRE: compiled '(^https?://[^/]+/squid-internal-mgr/)' with flags 9
2014/09/23 13:43:48.382| RegexData.cc(281) compileOptimisedREs: compileOptimisedREs: 2 REs are optimised into one RE.
2014/09/23 13:43:48.382| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type src
2014/09/23 13:43:48.382| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.382| Acl.cc(118) FindByName: ACL::FindByName 'localhost'
2014/09/23 13:43:48.382| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.382| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'localhost'
2014/09/23 13:43:48.382| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'src'
2014/09/23 13:43:48.382| Ip.cc(260) FactoryParse: aclIpParseIpData: 127.0.0.1/32
2014/09/23 13:43:48.383| Ip.cc(368) FactoryParse: aclIpParseIpData: '127.0.0.1/32' matched: SCAN3-v4: %[0123456789.]/%[0123456789.]
2014/09/23 13:43:48.383| Ip.cc(500) FactoryParse: Parsed: 127.0.0.1-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff](/128)
2014/09/23 13:43:48.383| Ip.cc(260) FactoryParse: aclIpParseIpData: ::1
2014/09/23 13:43:48.383| Ip.cc(405) FactoryParse: aclIpParseIpData: Lookup Host/IP ::1
2014/09/23 13:43:48.383| Ip.cc(439) FactoryParse: aclIpParseIpData: Located host/IP: '[::1]'
2014/09/23 13:43:48.383| Ip.cc(446) FactoryParse: ::1 --> [::1]
2014/09/23 13:43:48.383| Ip.cc(432) FactoryParse: aclIpParseIpData: Duplicate host/IP: '[::1]' dropped.
2014/09/23 13:43:48.383| Ip.cc(432) FactoryParse: aclIpParseIpData: Duplicate host/IP: '[::1]' dropped.
2014/09/23 13:43:48.384| Ip.cc(134) aclIpAddrNetworkCompare: aclIpAddrNetworkCompare: compare: 127.0.0.1/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff] (127.0.0.1) vs [::1]-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
2014/09/23 13:43:48.384| Ip.cc(134) aclIpAddrNetworkCompare: aclIpAddrNetworkCompare: compare: [::1]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff] ([::1]) vs 127.0.0.1-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
2014/09/23 13:43:48.384| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type dst
2014/09/23 13:43:48.384| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.384| Acl.cc(118) FindByName: ACL::FindByName 'to_localhost'
2014/09/23 13:43:48.384| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.384| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'to_localhost'
2014/09/23 13:43:48.384| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'dst'
2014/09/23 13:43:48.384| Ip.cc(260) FactoryParse: aclIpParseIpData: 127.0.0.0/8
2014/09/23 13:43:48.384| Ip.cc(368) FactoryParse: aclIpParseIpData: '127.0.0.0/8' matched: SCAN3-v4: %[0123456789.]/%[0123456789.]
2014/09/23 13:43:48.384| Ip.cc(500) FactoryParse: Parsed: 127.0.0.0-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ff00:0](/104)
2014/09/23 13:43:48.384| Ip.cc(260) FactoryParse: aclIpParseIpData: 0.0.0.0/32
2014/09/23 13:43:48.384| Ip.cc(368) FactoryParse: aclIpParseIpData: '0.0.0.0/32' matched: SCAN3-v4: %[0123456789.]/%[0123456789.]
2014/09/23 13:43:48.384| Ip.cc(500) FactoryParse: Parsed: 0.0.0.0-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff](/128)
2014/09/23 13:43:48.384| Ip.cc(134) aclIpAddrNetworkCompare: aclIpAddrNetworkCompare: compare: 127.0.0.0/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff] (127.0.0.0) vs 0.0.0.0-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
2014/09/23 13:43:48.384| Ip.cc(134) aclIpAddrNetworkCompare: aclIpAddrNetworkCompare: compare: 0.0.0.0/[ffff:ffff:ffff:ffff:ffff:ffff:ff00:0] (0.0.0.0) vs 127.0.0.0-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ff00:0]
2014/09/23 13:43:48.384| Ip.cc(260) FactoryParse: aclIpParseIpData: ::1
2014/09/23 13:43:48.384| Ip.cc(405) FactoryParse: aclIpParseIpData: Lookup Host/IP ::1
2014/09/23 13:43:48.384| Ip.cc(439) FactoryParse: aclIpParseIpData: Located host/IP: '[::1]'
2014/09/23 13:43:48.384| Ip.cc(446) FactoryParse: ::1 --> [::1]
2014/09/23 13:43:48.384| Ip.cc(432) FactoryParse: aclIpParseIpData: Duplicate host/IP: '[::1]' dropped.
2014/09/23 13:43:48.384| Ip.cc(432) FactoryParse: aclIpParseIpData: Duplicate host/IP: '[::1]' dropped.
2014/09/23 13:43:48.384| Ip.cc(134) aclIpAddrNetworkCompare: aclIpAddrNetworkCompare: compare: 0.0.0.0/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff] (0.0.0.0) vs [::1]-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
2014/09/23 13:43:48.384| Ip.cc(134) aclIpAddrNetworkCompare: aclIpAddrNetworkCompare: compare: [::1]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff] ([::1]) vs 0.0.0.0-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
2014/09/23 13:43:48.384| Processing Configuration File: /usr/etc/squid.conf (depth 0)
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: http_port 3128
2014/09/23 13:43:48.386| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d47b8
2014/09/23 13:43:48.386| cache_cf.cc(3580) parsePortSpecification: http_port: found Listen on Port: 3128
2014/09/23 13:43:48.386| cache_cf.cc(3596) parsePortSpecification: http_port: found Listen on wildcard address: *:3128
2014/09/23 13:43:48.386| cbdata.cc(419) cbdataInternalLock: cbdataLock: 0xa3d47b8=1
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: visible_hostname centos
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: pid_filename /usr/etc/squid/squid.pid
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: acl localnet src 192.168.1.0/24 # RFC1918 possible internal network
2014/09/23 13:43:48.386| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type src
2014/09/23 13:43:48.386| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.386| Acl.cc(118) FindByName: ACL::FindByName 'localnet'
2014/09/23 13:43:48.386| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.386| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'localnet'
2014/09/23 13:43:48.386| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'src'
2014/09/23 13:43:48.386| Ip.cc(260) FactoryParse: aclIpParseIpData: 192.168.1.0/24
2014/09/23 13:43:48.386| Ip.cc(368) FactoryParse: aclIpParseIpData: '192.168.1.0/24' matched: SCAN3-v4: %[0123456789.]/%[0123456789.]
2014/09/23 13:43:48.386| Ip.cc(500) FactoryParse: Parsed: 192.168.1.0-[::]/[ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff00](/120)
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: acl SSL_ports port 443
2014/09/23 13:43:48.386| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.386| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.386| Acl.cc(118) FindByName: ACL::FindByName 'SSL_ports'
2014/09/23 13:43:48.386| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.386| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'SSL_ports'
2014/09/23 13:43:48.386| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'port'
2014/09/23 13:43:48.386| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d46e0
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 80 # http
2014/09/23 13:43:48.386| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.386| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.386| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.386| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.386| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'Safe_ports'
2014/09/23 13:43:48.386| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'port'
2014/09/23 13:43:48.386| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d48c0
2014/09/23 13:43:48.386| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 21 # ftp
2014/09/23 13:43:48.387| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.387| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.387| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.387| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.387| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d5478
2014/09/23 13:43:48.387| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 443 # https
2014/09/23 13:43:48.389| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.389| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.389| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.389| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.389| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d5498
2014/09/23 13:43:48.389| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 70 # gopher
2014/09/23 13:43:48.389| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.389| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.389| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.389| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.390| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d54b8
2014/09/23 13:43:48.390| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 210 # wais
2014/09/23 13:43:48.390| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.390| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.390| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.390| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.390| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d54d8
2014/09/23 13:43:48.390| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 1025-65535 # unregistered ports
2014/09/23 13:43:48.390| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.390| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.390| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.390| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.390| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d5530
2014/09/23 13:43:48.390| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 280 # http-mgmt
2014/09/23 13:43:48.390| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.390| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.390| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.390| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.390| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d5388
2014/09/23 13:43:48.390| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 488 # gss-http
2014/09/23 13:43:48.390| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.390| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.390| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.390| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.390| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d5550
2014/09/23 13:43:48.390| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 591 # filemaker
2014/09/23 13:43:48.390| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.390| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.390| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.390| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.391| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d54f8
2014/09/23 13:43:48.391| cache_cf.cc(556) parseOneConfigFile: Processing: acl Safe_ports port 777 # multiling http
2014/09/23 13:43:48.391| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.391| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.391| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.391| Acl.cc(270) ParseAclLine: aclParseAclLine: Appending to 'Safe_ports'
2014/09/23 13:43:48.391| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d55a0
2014/09/23 13:43:48.392| cache_cf.cc(556) parseOneConfigFile: Processing: acl CONNECT method CONNECT
2014/09/23 13:43:48.392| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type method
2014/09/23 13:43:48.392| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.392| Acl.cc(118) FindByName: ACL::FindByName 'CONNECT'
2014/09/23 13:43:48.392| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.392| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'CONNECT'
2014/09/23 13:43:48.392| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'method'
2014/09/23 13:43:48.392| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d57b0
2014/09/23 13:43:48.392| cache_cf.cc(556) parseOneConfigFile: Processing: acl urls_bloqueados url_regex -i /usr/etc/squid/urls_bloqueados
2014/09/23 13:43:48.392| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type url_regex
2014/09/23 13:43:48.392| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.392| Acl.cc(118) FindByName: ACL::FindByName 'urls_bloqueados'
2014/09/23 13:43:48.392| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.392| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'urls_bloqueados'
2014/09/23 13:43:48.392| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'url_regex'
2014/09/23 13:43:48.392| RegexData.cc(323) aclParseRegexList: aclParseRegexList: new Regex line or file
2014/09/23 13:43:48.392| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '-i'
2014/09/23 13:43:48.392| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '/usr/etc/squid/urls_bloqueados'
2014/09/23 13:43:48.392| RegexData.cc(214) compileOptimisedREs: compileOptimisedREs: -i
2014/09/23 13:43:48.392| RegexData.cc(238) compileOptimisedREs: compileOptimisedREs: adding RE '/usr/etc/squid/urls_bloqueados'
2014/09/23 13:43:48.393| RegexData.cc(173) compileRE: compileRE: compiled '(/usr/etc/squid/urls_bloqueados)' with flags 11
2014/09/23 13:43:48.393| RegexData.cc(281) compileOptimisedREs: compileOptimisedREs: 1 REs are optimised into one RE.
2014/09/23 13:43:48.393| cache_cf.cc(556) parseOneConfigFile: Processing: http_access deny urls_bloqueados
2014/09/23 13:43:48.393| InnerNode.cc(50) lineParse: looking for ACL urls_bloqueados
2014/09/23 13:43:48.393| Acl.cc(118) FindByName: ACL::FindByName 'urls_bloqueados'
2014/09/23 13:43:48.394| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d6098
2014/09/23 13:43:48.394| cache_cf.cc(556) parseOneConfigFile: Processing: acl sitesespeciais url_regex -i /usr/etc/squid/urls_outsquid
2014/09/23 13:43:48.394| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type url_regex
2014/09/23 13:43:48.394| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.394| Acl.cc(118) FindByName: ACL::FindByName 'sitesespeciais'
2014/09/23 13:43:48.394| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.394| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'sitesespeciais'
2014/09/23 13:43:48.394| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'url_regex'
2014/09/23 13:43:48.394| RegexData.cc(323) aclParseRegexList: aclParseRegexList: new Regex line or file
2014/09/23 13:43:48.394| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '-i'
2014/09/23 13:43:48.394| RegexData.cc(331) aclParseRegexList: aclParseRegexList: buffering RE '/usr/etc/squid/urls_outsquid'
2014/09/23 13:43:48.394| RegexData.cc(214) compileOptimisedREs: compileOptimisedREs: -i
2014/09/23 13:43:48.394| RegexData.cc(238) compileOptimisedREs: compileOptimisedREs: adding RE '/usr/etc/squid/urls_outsquid'
2014/09/23 13:43:48.394| RegexData.cc(173) compileRE: compileRE: compiled '(/usr/etc/squid/urls_outsquid)' with flags 11
2014/09/23 13:43:48.394| RegexData.cc(281) compileOptimisedREs: compileOptimisedREs: 1 REs are optimised into one RE.
2014/09/23 13:43:48.395| cache_cf.cc(556) parseOneConfigFile: Processing: always_direct allow sitesespeciais
2014/09/23 13:43:48.395| InnerNode.cc(50) lineParse: looking for ACL sitesespeciais
2014/09/23 13:43:48.395| Acl.cc(118) FindByName: ACL::FindByName 'sitesespeciais'
2014/09/23 13:43:48.395| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d7760
2014/09/23 13:43:48.395| cache_cf.cc(556) parseOneConfigFile: Processing: acl ports_outsquid port 25 110 587 143
2014/09/23 13:43:48.395| Acl.cc(425) Registered: ACL::Prototype::Registered: invoked for type port
2014/09/23 13:43:48.395| Acl.cc(429) Registered: ACL::Prototype::Registered: yes
2014/09/23 13:43:48.395| Acl.cc(118) FindByName: ACL::FindByName 'ports_outsquid'
2014/09/23 13:43:48.395| Acl.cc(124) FindByName: ACL::FindByName found no match
2014/09/23 13:43:48.395| Acl.cc(259) ParseAclLine: aclParseAclLine: Creating ACL 'ports_outsquid'
2014/09/23 13:43:48.395| Acl.cc(461) Factory: ACL::Prototype::Factory: cloning an object for type 'port'
2014/09/23 13:43:48.396| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d78b8
2014/09/23 13:43:48.396| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d58d8
2014/09/23 13:43:48.396| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d78d8
2014/09/23 13:43:48.396| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d78f8
2014/09/23 13:43:48.396| cache_cf.cc(556) parseOneConfigFile: Processing: no_cache deny sitesespeciais
2014/09/23 13:43:48.396| InnerNode.cc(50) lineParse: looking for ACL sitesespeciais
2014/09/23 13:43:48.396| Acl.cc(118) FindByName: ACL::FindByName 'sitesespeciais'
2014/09/23 13:43:48.396| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d79d8
2014/09/23 13:43:48.396| cache_cf.cc(556) parseOneConfigFile: Processing: no_cache deny ports_outsquid
2014/09/23 13:43:48.396| InnerNode.cc(50) lineParse: looking for ACL ports_outsquid
2014/09/23 13:43:48.396| Acl.cc(118) FindByName: ACL::FindByName 'ports_outsquid'
2014/09/23 13:43:48.396| cache_cf.cc(556) parseOneConfigFile: Processing: always_direct allow sitesespeciais
2014/09/23 13:43:48.396| InnerNode.cc(50) lineParse: looking for ACL sitesespeciais
2014/09/23 13:43:48.396| Acl.cc(118) FindByName: ACL::FindByName 'sitesespeciais'
2014/09/23 13:43:48.396| cache_cf.cc(556) parseOneConfigFile: Processing: always_direct allow ports_outsquid
2014/09/23 13:43:48.396| InnerNode.cc(50) lineParse: looking for ACL ports_outsquid
2014/09/23 13:43:48.396| Acl.cc(118) FindByName: ACL::FindByName 'ports_outsquid'
2014/09/23 13:43:48.396| cache_cf.cc(556) parseOneConfigFile: Processing: http_access deny !Safe_ports
2014/09/23 13:43:48.396| InnerNode.cc(50) lineParse: looking for ACL Safe_ports
2014/09/23 13:43:48.396| Acl.cc(118) FindByName: ACL::FindByName 'Safe_ports'
2014/09/23 13:43:48.397| cache_cf.cc(556) parseOneConfigFile: Processing: http_access deny CONNECT !SSL_ports
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL CONNECT
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'CONNECT'
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL SSL_ports
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'SSL_ports'
2014/09/23 13:43:48.397| cache_cf.cc(556) parseOneConfigFile: Processing: http_access allow localhost manager
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL localhost
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'localhost'
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL manager
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'manager'
2014/09/23 13:43:48.397| cache_cf.cc(556) parseOneConfigFile: Processing: http_access deny manager
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL manager
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'manager'
2014/09/23 13:43:48.397| cache_cf.cc(556) parseOneConfigFile: Processing: http_access allow localnet
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL localnet
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'localnet'
2014/09/23 13:43:48.397| cache_cf.cc(556) parseOneConfigFile: Processing: http_access allow localhost
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL localhost
2014/09/23 13:43:48.397| Acl.cc(118) FindByName: ACL::FindByName 'localhost'
2014/09/23 13:43:48.397| cache_cf.cc(556) parseOneConfigFile: Processing: http_access deny all
2014/09/23 13:43:48.397| InnerNode.cc(50) lineParse: looking for ACL all
2014/09/23 13:43:48.398| Acl.cc(118) FindByName: ACL::FindByName 'all'
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: cache_dir ufs /cache 100 16 256
2014/09/23 13:43:48.398| filemap.cc(61) FileMap: creating space for 16384 files
2014/09/23 13:43:48.398| filemap.cc(62) FileMap: --> 512 words of 4 bytes each
2014/09/23 13:43:48.398| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d9418
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: maximum_object_size 4 MB
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: cache_mem 512 MB
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: cache_swap_low 90
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: cache_swap_high 95
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: coredump_dir /usr/var/cache/squid
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: refresh_pattern ^ftp: 1440 20% 10080
2014/09/23 13:43:48.398| cache_cf.cc(556) parseOneConfigFile: Processing: refresh_pattern ^gopher: 1440 0% 1440
2014/09/23 13:43:48.399| cache_cf.cc(556) parseOneConfigFile: Processing: refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
2014/09/23 13:43:48.399| cache_cf.cc(556) parseOneConfigFile: Processing: refresh_pattern . 0 20% 4320
2014/09/23 13:43:48.399| cache_cf.cc(556) parseOneConfigFile: Processing: cache_access_log /usr/etc/squid/log/access.log
2014/09/23 13:43:48.399| cache_cf.cc(4165) setLogformat: possible /usr/etc/squid/log/access.log logformat: squid
2014/09/23 13:43:48.399| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3db860
2014/09/23 13:43:48.399| cache_cf.cc(556) parseOneConfigFile: Processing: cache_log /usr/etc/squid/log/cache.log
2014/09/23 13:43:48.399| cache_cf.cc(556) parseOneConfigFile: Processing: cache_store_log /usr/etc/squid/log/store.log
2014/09/23 13:43:48.399| cache_cf.cc(556) parseOneConfigFile: Processing: cache_swap_log /usr/etc/squid/log/swap.log
2014/09/23 13:43:48.399| InnerNode.cc(50) lineParse: looking for ACL all
2014/09/23 13:43:48.399| Acl.cc(118) FindByName: ACL::FindByName 'all'
2014/09/23 13:43:48.400| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3d45f8
2014/09/23 13:43:48.400| wccp2.cc(532) wccp2_add_service_list: wccp2_add_service_list: added service id 0
2014/09/23 13:43:48.400| InnerNode.cc(50) lineParse: looking for ACL ssl::certUntrusted
2014/09/23 13:43:48.400| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certUntrusted'
2014/09/23 13:43:48.400| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3daed8
2014/09/23 13:43:48.400| InnerNode.cc(50) lineParse: looking for ACL ssl::certSelfSigned
2014/09/23 13:43:48.400| Acl.cc(118) FindByName: ACL::FindByName 'ssl::certSelfSigned'
2014/09/23 13:43:48.400| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3ded18
2014/09/23 13:43:48.400| InnerNode.cc(50) lineParse: looking for ACL all
2014/09/23 13:43:48.400| Acl.cc(118) FindByName: ACL::FindByName 'all'
2014/09/23 13:43:48.400| cbdata.cc(324) cbdataInternalAlloc: cbdataAlloc: 0xa3deb00
2014/09/23 13:43:48.400| tools.cc(631) uniqueHostname: Config: '
2014/09/23 13:43:48.400| tools.cc(631) uniqueHostname: Config: '
2014/09/23 13:43:48.400| Initializing https proxy context
2014/09/23 13:43:48.406| support.cc(1055) sslCreateClientContext: Using SSLv2/SSLv3.
2014/09/23 13:43:48.408| support.cc(1107) sslCreateClientContext: Setting RSA key generation callback.
2014/09/23 13:43:48.409| support.cc(1114) sslCreateClientContext: Setting certificate verification callback.
2014/09/23 13:43:48.409| support.cc(1118) sslCreateClientContext: Setting CA certificate locations.
2014/09/23 13:43:48.438| tools.cc(643) leave_suid: leave_suid: PID 2465 called
2014/09/23 13:43:48.438| tools.cc(665) leave_suid: leave_suid: PID 2465 giving up root, becoming 'nobody'
2014/09/23 13:43:48.441| debug.cc(425) parseOptions: command-line -X overrides: ALL,1





Gostaria de ajuda para poder decifrar esse problema, por favor


  


2. Re: Erro squid, para depois de alguns segundos [RESOLVIDO]

Phillip Vieira
phrich

(usa Slackware)

Enviado em 23/09/2014 - 14:27h

Inicie o squid da seguinte maneira:

squid3 -d 10

Assim será mais fácil de vc ver onde está o problema.


3. Re: Erro squid, para depois de alguns segundos [RESOLVIDO]

Julio Cesar
jcesarstef

(usa Slackware)

Enviado em 23/09/2014 - 14:46h

FATAL: Failed to open swap log /usr/etc/squid/log/swap.log.00.new
2014/09/23 14:39:57 kid1| Set Current Directory to /usr/var/cache/squid
2014/09/23 14:39:57 kid1| Starting Squid Cache version 3.4.7 for i686-pc-linux-gnu...
2014/09/23 14:39:57 kid1| Process ID 12029
2014/09/23 14:39:57 kid1| Process Roles: worker
2014/09/23 14:39:57 kid1| With 1024 file descriptors available
2014/09/23 14:39:57 kid1| Initializing IP Cache...
2014/09/23 14:39:57 kid1| DNS Socket created at [::], FD 7
2014/09/23 14:39:57 kid1| DNS Socket created at 0.0.0.0, FD 8
2014/09/23 14:39:57 kid1| Adding domain home from /etc/resolv.conf
2014/09/23 14:39:57 kid1| Adding nameserver 192.168.1.1 from /etc/resolv.conf
2014/09/23 14:39:57 kid1| Logfile: opening log /usr/etc/squid/log/access.log
2014/09/23 14:39:57 kid1| WARNING: log name now starts with a module name. Use 'stdio:/usr/etc/squid/log/access.log'
2014/09/23 14:39:57 kid1| Logfile: opening log /usr/etc/squid/log/access.log
2014/09/23 14:39:57 kid1| WARNING: log name now starts with a module name. Use 'stdio:/usr/etc/squid/log/access.log'
2014/09/23 14:39:57 kid1| Unlinkd pipe opened on FD 14
2014/09/23 14:39:57 kid1| Logfile: opening log /usr/etc/squid/log/store.log
2014/09/23 14:39:57 kid1| WARNING: log name now starts with a module name. Use 'stdio:/usr/etc/squid/log/store.log'
2014/09/23 14:39:57 kid1| Swap maxSize 102400 + 524288 KB, estimated 48206 objects
2014/09/23 14:39:57 kid1| Target number of buckets: 2410
2014/09/23 14:39:57 kid1| Using 8192 Store buckets
2014/09/23 14:39:57 kid1| Max Mem size: 524288 KB
2014/09/23 14:39:57 kid1| Max Swap size: 102400 KB
2014/09/23 14:39:57 kid1| ERROR: while opening swap log/usr/etc/squid/log/swap.log.00.new: (13) Permission denied
FATAL: Failed to open swap log /usr/etc/squid/log/swap.log.00.new


por que ele ta apontando para swap.log.00.new? ele tem que ter permissão para criar esse arquivo?


4. Re: Erro squid, para depois de alguns segundos [RESOLVIDO]

Phillip Vieira
phrich

(usa Slackware)

Enviado em 23/09/2014 - 15:00h

Fez o squid3 -z ?

Percebi que este seu squid foi compilado, vc deu permissão no diretório de logs para o usuário e grupo do squid?

Com certeza é isto que está acontecendo.


5. Re: Erro squid, para depois de alguns segundos [RESOLVIDO]

Julio Cesar
jcesarstef

(usa Slackware)

Enviado em 23/09/2014 - 15:44h

sim, foi compilado.
ja dei o -z, o diretorio dos logs é /usr/etc/squid/log/, acabei de dar um um chmod -R 0777 no dir e um squid -d 10
essa é a msg:

[root@centos ~]# squid -d 10
[root@centos ~]# 2014/09/23 15:29:55 kid1| Set Current Directory to /usr/var/cache/squid
2014/09/23 15:29:55 kid1| Starting Squid Cache version 3.4.7 for i686-pc-linux-gnu...
2014/09/23 15:29:55 kid1| Process ID 12274
2014/09/23 15:29:55 kid1| Process Roles: worker
2014/09/23 15:29:55 kid1| With 1024 file descriptors available
2014/09/23 15:29:55 kid1| Initializing IP Cache...
2014/09/23 15:29:55 kid1| DNS Socket created at [::], FD 7
2014/09/23 15:29:55 kid1| DNS Socket created at 0.0.0.0, FD 8
2014/09/23 15:29:55 kid1| Adding domain home from /etc/resolv.conf
2014/09/23 15:29:55 kid1| Adding nameserver 192.168.1.1 from /etc/resolv.conf
2014/09/23 15:29:55 kid1| Logfile: opening log stdio:/usr/etc/squid/log/access.log
2014/09/23 15:29:55 kid1| Unlinkd pipe opened on FD 13
2014/09/23 15:29:56 kid1| Logfile: opening log stdio:/usr/etc/squid/log/store.log
2014/09/23 15:29:56 kid1| Swap maxSize 102400 + 524288 KB, estimated 48206 objects
2014/09/23 15:29:56 kid1| Target number of buckets: 2410
2014/09/23 15:29:56 kid1| Using 8192 Store buckets
2014/09/23 15:29:56 kid1| Max Mem size: 524288 KB
2014/09/23 15:29:56 kid1| Max Swap size: 102400 KB
2014/09/23 15:29:56 kid1| Rebuilding storage in /cache (no log)
2014/09/23 15:29:56 kid1| Using Least Load store dir selection
2014/09/23 15:29:56 kid1| Set Current Directory to /usr/var/cache/squid
2014/09/23 15:29:59 kid1| Finished loading MIME types and icons.
2014/09/23 15:29:59 kid1| HTCP Disabled.
2014/09/23 15:29:59 kid1| commBind: Cannot bind socket FD 17 to [::1]: (99) Cannot assign requested address
2014/09/23 15:29:59 kid1| commBind: Cannot bind socket FD 18 to [::1]: (99) Cannot assign requested address
2014/09/23 15:29:59 kid1| ERROR: Failed to create helper child read FD: UDP[::1]
2014/09/23 15:30:00 kid1| Squid plugin modules loaded: 0
2014/09/23 15:30:00 kid1| Accepting HTTP Socket connections at local=[::]:3128 remote=[::] FD 16 flags=9
2014/09/23 15:30:01 kid1| Done scanning /cache dir (0 entries)
2014/09/23 15:30:01 kid1| Finished rebuilding storage from disk.
2014/09/23 15:30:01 kid1| 0 Entries scanned
2014/09/23 15:30:01 kid1| 0 Invalid entries.
2014/09/23 15:30:01 kid1| 0 With invalid flags.
2014/09/23 15:30:01 kid1| 0 Objects loaded.
2014/09/23 15:30:01 kid1| 0 Objects expired.
2014/09/23 15:30:01 kid1| 0 Objects cancelled.
2014/09/23 15:30:01 kid1| 0 Duplicate URLs purged.
2014/09/23 15:30:01 kid1| 0 Swapfile clashes avoided.
2014/09/23 15:30:01 kid1| Took 5.48 seconds ( 0.00 objects/sec).
2014/09/23 15:30:01 kid1| Beginning Validation Procedure
2014/09/23 15:30:01 kid1| Completed Validation Procedure
2014/09/23 15:30:01 kid1| Validated 0 Entries
2014/09/23 15:30:01 kid1| store_swap_size = 0.00 KB
2014/09/23 15:30:02 kid1| storeLateRelease: released 0 objects


FUNCIONOU! Muito obrigado, erra isso mesmo, erros na permissão das pastas, eu dei a permissão pros arquivos mas n dei para as pastas


6. Re: Erro squid, para depois de alguns segundos [RESOLVIDO]

Phillip Vieira
phrich

(usa Slackware)

Enviado em 23/09/2014 - 16:02h

Imaginei.

Qdo possível, marque o tópico como finalizado.

Abs.






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts