search for: connections

Displaying 20 results from an estimated 84111 matches for "connections".

Did you mean: connection
2006 May 02
1
compile R on Solaris 9
...date. `libnmath.a' is up to date. `Makedeps' is up to date. `libunix.a' is up to date. `Makedeps' is up to date. gcc -I../../src/extra/zlib -I../../src/extra/bzip2 -I../../src/extra/pcre -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -g -O2 -c connections.c -o connections.o connections.c: In function `init_con': connections.c:381: structure has no member named `open64' connections.c: In function `newfile': connections.c:639: structure has no member named `open64' connections.c: In function `newfifo': connections.c:785: structure...
2006 Jan 29
1
I gonna understand one day
Hi, I'm still struggling with dovecot and Unixware: On my main server, I have two problems: 1- imap-login has great difficulties to connect to 'default'. I have traced it to accept in auth_master_listener.c witch fails with errno=71 (EPROTO) weird... 2- It some times works and I can log-in but imap gets killed by signal 6 (abort?) See the logs: Jan 24 12:40:25 dovecot: Dovecot
2004 Aug 06
0
Problems with 1.3.11 and Ices 0.22
We just built a new server to run Icecast 1.3.11 and Ices 0.22. It's a Dual PIII running RH7.1. We put it online last night and Icecast ran fine for 20 hours. Then it started throwing some errors.. That's when Ices died. Ices reported a libshout error. Part of the Icecast log is included. What can I do about this? Hunter [26/Aug/2001:16:05:01] [32:Connection Handler] Accepted
2019 May 22
8
[PATCH libnbd v2 0/6] Test connection states.
Patch 1/6 was posted before and I didn't change it: https://www.redhat.com/archives/libguestfs/2019-May/thread.html#00134 That doesn't necessarily mean I shouldn't change it, I'm posting it again because the other patches depend on it. The main change in this series is we add three new API functions: nbd_aio_is_created - connection has just been created
2019 May 21
2
[PATCH libnbd] api: Synchronous connect waits til all connections are connected.
nbd_connect_unix|tcp had a tricky failure case. This is a consequence of allowing callers to mix synchronous and asynchronous calls, with multi-conn thrown into the mix. I think the new behaviour proposed here is better. We could do with a better way of classifying the state of connections, such as are they connectING. Rich.
2019 May 21
0
[PATCH libnbd] api: Synchronous connect waits til all connections are connected.
...usly I had it so that they would return as soon as at least one connection was connected. However this is a problem if you are using them as a convenient way to set up a multi-threaded main loop, because it can be that some of them have not finished connecting, but then you issue commands on those connections and that will fail. The failure is pernicious because most of the time you won't see it, only if one connection is slow. So it's (probably) better that the synchronous ‘nbd_connect_unix’ and ‘nbd_connect_tcp’ should connect every connection object before returning. For ‘nbd_connect_comma...
2019 May 22
0
[PATCH libnbd v2 1/6] api: Synchronous connect waits til all connections are connected.
...usly I had it so that they would return as soon as at least one connection was connected. However this is a problem if you are using them as a convenient way to set up a multi-threaded main loop, because it can be that some of them have not finished connecting, but then you issue commands on those connections and that will fail. The failure is pernicious because most of the time you won't see it, only if one connection is slow. So it's (probably) better that the synchronous ‘nbd_connect_unix’ and ‘nbd_connect_tcp’ should connect every connection object before returning. For ‘nbd_connect_comma...
2007 May 18
0
Errors in smbd log file
List, Regarding a problem I'm having that I can't login to our domain, after searching google I checked my smbd log file. I pasted the log file below. Please know that I could see the samba server in my network places just fine before. Now when I double click on the domain I get the error message that the path was not found. I'm running w2k. Thanks, [2007/04/06 08:41:39, 0]
2007 Jul 01
1
Database server failure causes endless loop
...11:31:03 Error: auth(default): pgsql: Connect failed to <database>: could not connect to server: Connection refused dovecot: Jul 01 11:31:03 Error: auth(default): Is the server running on host "localhost" and accepting dovecot: Jul 01 11:31:03 Error: auth(default): TCP/IP connections on port 5432? dovecot: Jul 01 11:31:08 Error: auth(default): pgsql: Connect failed to <database>: could not connect to server: Connection refused dovecot: Jul 01 11:31:08 Error: auth(default): Is the server running on host "localhost" and accepting dovecot: Jul 01 11:31:08 Er...
2018 Jun 13
2
iproute2 problems
Yes, I am sure but added another broader rule: nsasia at db1:~$ sudo ufw allow from any port 655 proto udp same result for debug example. regards Robert >>> Rafael Wolf <rfwolf at gmail.com> 13-Jun-18 5:32 PM >>> Telnet will only do tcp not udp which tinc works on. Are you sure udp 655 is open? On Wed, Jun 13, 2018, 3:51 AM Robert Horgan <robert
2018 Jun 13
1
iproute2 problems
Hi, Are you sure? What happens if you manually telnet/socket 10.130.39.180 nsasia at web3:~$ telnet 10.130.39.180 655 Trying 10.130.39.180... Connected to 10.130.39.180. Escape character is '^]'. 0 db1 17 Connection closed by foreign host. Stopping the service and running debug I get: nsasia at web3:~$ sudo tincd -n gainplus -d5 -D tincd 1.0.33 starting, debug level 5
2007 Nov 22
1
A installation problem that needs your supports.
...ile installing R on Unix server. Anyone could tell me how to fix this issue? The OS version is Enterprise Linux AS release 4 (Nahant Update 4). -c complex.c -o complex.o gcc -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -mieee-fp -g -O2 -c connections.c -o connections.o connections.c: In function `con_close1': connections.c:1963: error: `Rgzconn' undeclared (first use in this function) connections.c:1963: error: (Each undeclared identifier is reported only once connections.c:1963: error: for each function it appears in.) connections.c:19...
2019 May 23
2
Re: [PATCH libnbd v2 1/6] api: Synchronous connect waits til all connections are connected.
...t they would return as > soon as at least one connection was connected. However this is a > problem if you are using them as a convenient way to set up a > multi-threaded main loop, because it can be that some of them have not > finished connecting, but then you issue commands on those connections > and that will fail. The failure is pernicious because most of the > time you won't see it, only if one connection is slow. So it's > (probably) better that the synchronous ‘nbd_connect_unix’ and > ‘nbd_connect_tcp’ should connect every connection object before > returning...
2013 Nov 07
1
Unix connections not always disconnecting
...ed [2013-11-07 00:26:01] VERBOSE[25963] asterisk.c: -- Remote UNIX connection [2013-11-07 00:26:01] VERBOSE[27644] asterisk.c: -- Remote UNIX connection disconnected As you can see, at these times there isn't a disconnect for every connect. I think this ends up maxing out the amount of connections the service allows and that's what makes it unresponsive. A service restart fixes the issue at this time. This happens completely randomly, I've not been able to correlate this happening with any other events that are going on at the time. Can anyone think of any reason why doing the aste...
2001 Nov 27
2
:445 (connection refused)
Howdy! the setup: RH-VALE 6.2.4 running samba2.2.2 cvs from 11/24/2001... user running NT 4.0 SP6a the problem: I have a user that cannot print - She can add the printer but can't print. log for that machine shows the following: ... normal looking connections to obtain drivers - all look OK - no complaints.. .. then this - libsmb/namequery.c:name_query(415) Got a positive name query response from 10.1.1.111 ( 10.8.40.97 ) lib/util_sock.c:open_socket_out(898) error connecting to 10.8.40.97:445 (Connection refused) libsmb/namequery.c:name_query(415...
2015 Jan 11
2
Resizing lvm fails with fedora20
Hi, I'm trying to resize a 15GB LVM root partition on a fedora20 server with a fedora20 guest and I'm having a problem. Is this supported on fedora20? I recall having a similar problem (maybe even exact same problem) all the way back in fedora16 or fedora17, but hoped/thought it would be fixed by now? # virt-df -h test1-011015.img Filesystem Size Used
2015 Aug 11
2
C6.7 evolution to cyrus imap(s) fails
...your cyrus-imapd. > > Logout by entering > > a2 LOGOUT > > If you got that far, the troublemaker is Evolution. Can't help you with that > one as I am not using it. Validate all the account settings to be valid. > >> In coming mail can be seen but nothing about evo connections as far as I >> can see >> >> There do seem to be some warnings/errors - they don't look relavant?? > > Right, irrelevant for your isse. > >> Many thanks for your help >> >> John >> >> >You really should see your user login in this l...
2012 Jan 15
1
puppet client server connection refused when I use puppet kick
I have very strange problem. I set up puppet client on serveral servers but have problem with one of them. When I invoke: root@www ~ # puppet agent --server puppetmaster.domain.ltd --test notice: Ignoring --listen on onetime run info: Caching catalog for puppetclient.domain.ltd info: Applying configuration version ''1326444431'' notice: Finished catalog run in
2006 Mar 08
4
unless connected? + multiple databases
...ecord::Base HAS established a connection this class will use that (incorrect) one because I assume it inherits from ActiveRecord::Base and the connected? method checks all superclasses What I need to say essentially is that When it comes to the connection this class doesn''t inherit the connections. Does anyone know a way to do this? I have tried having an intermediate class that this one inherits from where the establish connection is over-ridden but if connected? doesn''t see a connection there is still tracks up to ActiveRecord::Base instead of saying "Ok, it isn''...
2010 Jul 20
1
Login process connection routing
Timo, Just out of curiosity, how are incoming connections routed to login processes when run with: service imap-login { service_count = 0 } I've been playing with this on our test director, and the process connection counts look somewhat unbalanced. I'm wondering if there are any performance issues with having a single process handle so many conn...