Erro 10055

View: New views
7 Messages — Rating Filter:   Alert me  

Erro 10055

by Brasil Software :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Pessoal tenho um cliente com a seguinte configuração.
Computador        DELL
Processador         XEON 1.83
Memoria              4GB
HD                       70GB livre 30GB
Usuario simultanio 60

Postgresql

shared_buffers =512MB
work_men       = 34MB
max_connections = 80


# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
#host    all         all         ::1/128               md5
host    all         all         0.0.0.0  0.0.0.0      md5

Contantemente ocorre o seguinte erro

10.0.0.193(1853) DETAIL:  could not connect to server: No buffer space
available (0x00002747/10055)
        Is the server running on host "10.10.1.250" and accepting
        TCP/IP connections on port 5432?

alguem pode me dizer o que esta acontecento.


_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral

Re: Erro 10055

by Dickson S. Guedes-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Brasil Software escreveu:

> Pessoal tenho um cliente com a seguinte configuração.
> Computador        DELL
> Processador         XEON 1.83
> Memoria              4GB
> HD                       70GB livre 30GB
> Usuario simultanio 60
>
> Postgresql
>
> shared_buffers =512MB
> work_men       = 34MB
> max_connections = 80
>
>
> # TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
>
> # IPv4 local connections:
> host    all         all         127.0.0.1/32          md5
> # IPv6 local connections:
> #host    all         all         ::1/128               md5
> host    all         all         0.0.0.0  0.0.0.0      md5
>
> Contantemente ocorre o seguinte erro
>
> 10.0.0.193(1853) DETAIL:  could not connect to server: No buffer space
> available (0x00002747/10055)
>         Is the server running on host "10.10.1.250" and accepting
>         TCP/IP connections on port 5432?
>
> alguem pode me dizer o que esta acontecento
Ola bom dia,

Lembro deste acontecimento em:

-
http://listas.postgresql.org.br/pipermail/pgbr-geral/2008-September/011659.html

Dois emails sugeriram alguns caminhos:

-
http://listas.postgresql.org.br/pipermail/pgbr-geral/2008-September/011660.html
-
http://listas.postgresql.org.br/pipermail/pgbr-geral/2008-September/011701.html

Você testou-os e não obteve sucesso?

Olhando mais afundo este erro vem de:

interfaces/libpq/win32.c:        WSAENOBUFS, "No buffer space available"

e conseqüentemente de:

backend/port/win32/socket.c:        case WSAENOBUFS:
backend/port/win32/socket.c:            errno = ENOBUFS;

Justamente na função TranslateSocketError que converte o último erro de
socket retornado na variavel 'errno'.

Em resumo, o problema em si é falta de espaço em buffer sim.  Que tal
olhar os parâmetros de shared memory dos sockets do Windows?

--
[]s
Dickson S. Guedes
Administrador de Banco de Dados
Projeto Colmeia -  Florianópolis, SC
(48) 3322-1185, ramal: 26

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral

Re: Erro 10055

by Rodrigo Marins :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2008/10/3 Brasil Software <brasilsoftware_prog@...>
Pessoal tenho um cliente com a seguinte configuração.
Computador        DELL
Processador         XEON 1.83
Memoria              4GB
HD                       70GB livre 30GB
Usuario simultanio 60

Postgresql

shared_buffers =512MB
work_men       = 34MB
max_connections = 80


# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
#host    all         all         ::1/128               md5
host    all         all         0.0.0.0  0.0.0.0      md5

Contantemente ocorre o seguinte erro

10.0.0.193(1853) DETAIL:  could not connect to server: No buffer space
available (0x00002747/10055)
       Is the server running on host "10.10.1.250" and accepting
       TCP/IP connections on port 5432?

alguem pode me dizer o que esta acontecendo.


dentro do postgresql.conf coloque no parametro listen_addresses  o "*".

listen_addresses = '*'

acho que isso deve resolver...

--
Rodrigo Marins
http://pgcon.postgresql.org.br/
http://portaldodesenvolvedor.com.br/
(11) 8747-7442

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral

Re: Erro 10055

by Rodrigo Marins :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2008/10/3 Rodrigo Marins <marins.consultoria@...>
2008/10/3 Brasil Software <brasilsoftware_prog@...>
Pessoal tenho um cliente com a seguinte configuração.
Computador        DELL
Processador         XEON 1.83
Memoria              4GB
HD                       70GB livre 30GB
Usuario simultanio 60

Postgresql

shared_buffers =512MB
work_men       = 34MB
max_connections = 80


# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
#host    all         all         ::1/128               md5
host    all         all         0.0.0.0  0.0.0.0      md5

Contantemente ocorre o seguinte erro

10.0.0.193(1853) DETAIL:  could not connect to server: No buffer space
available (0x00002747/10055)
       Is the server running on host "10.10.1.250" and accepting
       TCP/IP connections on port 5432?

alguem pode me dizer o que esta acontecendo.


dentro do postgresql.conf coloque no parametro listen_addresses  o "*".

listen_addresses = '*'


Desconsidere a mensagem anterior....

Você esta rodando em windows, correto?

Qual a versão?

 

--
Rodrigo Marins
http://pgcon.postgresql.org.br/
http://portaldodesenvolvedor.com.br/
(11) 8747-7442

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral

Re: Erro 10055

by Rodrigo Marins :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2008/10/3 Rodrigo Marins <marins.consultoria@...>
2008/10/3 Rodrigo Marins <marins.consultoria@...>
2008/10/3 Brasil Software <brasilsoftware_prog@...>
Pessoal tenho um cliente com a seguinte configuração.
Computador        DELL
Processador         XEON 1.83
Memoria              4GB
HD                       70GB livre 30GB
Usuario simultanio 60

Postgresql

shared_buffers =512MB
work_men       = 34MB
max_connections = 80


# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
#host    all         all         ::1/128               md5
host    all         all         0.0.0.0  0.0.0.0      md5

Contantemente ocorre o seguinte erro

10.0.0.193(1853) DETAIL:  could not connect to server: No buffer space
available (0x00002747/10055)
       Is the server running on host "10.10.1.250" and accepting
       TCP/IP connections on port 5432?

alguem pode me dizer o que esta acontecendo.


dentro do postgresql.conf coloque no parametro listen_addresses  o "*".

listen_addresses = '*'


Desconsidere a mensagem anterior....

Você esta rodando em windows, correto?

Qual a versão?

Fazendo uma busca no google, achei diversos problemas relacionado ao seu, o problemas vão de configuração do SHHMAX - Shared_buffers ate bug no sistema operacional "Se for windows".

Segue alguns links que podem te ajudar.


Problema SO: http://notepad-webservices.blogspot.com/2006/11/solution-to-no-buffer-space-available.html

http://www.mail-archive.com/pgbr-geral@.../msg11531.html


--
Rodrigo Marins
http://pgcon.postgresql.org.br/
http://portaldodesenvolvedor.com.br/
(11) 8747-7442

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral

Re: Erro 10055

by José Mello Júnior :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

# Allow any user on the local system to connect to any database under
# any database user name using Unix-domain sockets (the default for local
# connections).
#
# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
local   all         all                               trust


2008/10/3 Rodrigo Marins <marins.consultoria@...>
2008/10/3 Brasil Software <brasilsoftware_prog@...>
Pessoal tenho um cliente com a seguinte configuração.
Computador        DELL
Processador         XEON 1.83
Memoria              4GB
HD                       70GB livre 30GB
Usuario simultanio 60

Postgresql

shared_buffers =512MB
work_men       = 34MB
max_connections = 80


# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
#host    all         all         ::1/128               md5
host    all         all         0.0.0.0  0.0.0.0      md5

Contantemente ocorre o seguinte erro

10.0.0.193(1853) DETAIL:  could not connect to server: No buffer space
available (0x00002747/10055)
       Is the server running on host "10.10.1.250" and accepting
       TCP/IP connections on port 5432?

alguem pode me dizer o que esta acontecendo.


dentro do postgresql.conf coloque no parametro listen_addresses  o "*".

listen_addresses = '*'

acho que isso deve resolver...

--
Rodrigo Marins
http://pgcon.postgresql.org.br/
http://portaldodesenvolvedor.com.br/
(11) 8747-7442

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral




--
José de Mello Júnior
41.9957-2007

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral

Re: Erro 10055

by Brasil Software :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Rodrigo Marins escreveu:

> 2008/10/3 Rodrigo Marins <marins.consultoria@...
> <mailto:marins.consultoria@...>>
>
>     2008/10/3 Brasil Software <brasilsoftware_prog@...
>     <mailto:brasilsoftware_prog@...>>
>
>         Pessoal tenho um cliente com a seguinte configuração.
>         Computador        DELL
>         Processador         XEON 1.83
>         Memoria              4GB
>         HD                       70GB livre 30GB
>         Usuario simultanio 60
>
>         Postgresql
>
>         shared_buffers =512MB
>         work_men       = 34MB
>         max_connections = 80
>
>
>         # TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
>
>         # IPv4 local connections:
>         host    all         all         127.0.0.1/32
>         <http://127.0.0.1/32>          md5
>         # IPv6 local connections:
>         #host    all         all         ::1/128               md5
>         host    all         all         0.0.0.0 <http://0.0.0.0>
>          0.0.0.0 <http://0.0.0.0>      md5
>
>         Contantemente ocorre o seguinte erro
>
>         10.0.0.193 <http://10.0.0.193>(1853) DETAIL:  could not
>         connect to server: No buffer space
>         available (0x00002747/10055)
>                Is the server running on host "10.10.1.250
>         <http://10.10.1.250>" and accepting
>                TCP/IP connections on port 5432?
>
>         alguem pode me dizer o que esta acontecendo.
>
>
>
>     dentro do postgresql.conf coloque no parametro listen_addresses  o
>     "*".
>
>     listen_addresses = '*'
>
>
>
> Desconsidere a mensagem anterior....
>
> Você esta rodando em windows, correto?
>
> Qual a versão?
windows 2003

>
>  
>
> --
> Rodrigo Marins
> http://pgcon.postgresql.org.br/
> http://portaldodesenvolvedor.com.br/
> (11) 8747-7442
> ------------------------------------------------------------------------
>
> _______________________________________________
> pgbr-geral mailing list
> pgbr-geral@...
> https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral
>  

_______________________________________________
pgbr-geral mailing list
pgbr-geral@...
https://listas.postgresql.org.br/cgi-bin/mailman/listinfo/pgbr-geral
LightInTheBox - Buy quality products at wholesale price!