search for: _connect

Displaying 15 results from an estimated 15 matches for "_connect".

Did you mean: connect
2007 Dec 07
1
Added native socks support to libc in FreeBSD 7
Hi, i added a native (client) Socks V4/V5 support inside FreeBSD libc library. The work is based of my project (see http://csocks.altervista.org) CSOCKS. You can get it here: http://csocks.altervista.org/download/FreeBSD_libc.tar.gz CHANGES: I changed the file: /usr/src/lib/libc/Makefile I added the Directory: /usr/src/lib/libc/socks They contains the files:
2009 Aug 15
2
Dovecot LDA
...vpopmail { } user = vpopmail count = 1 ssl_require_client_cert = no } Which work well for authenticating users, however when using the following in a .qmail file: |/var/qmail/bin/preline -f /usr/local/libexec/dovecot/deliver -d $EXT@$USER I get the following error message: Error:_userdb_lookup:_connect(/usr/local/var/run/dovecot//auth-master)_failed:_No_such_file_or_directory/ Eventhough it should have been created (I think) in the protocol lda section of the config file. I specifieD: auth_socket_path = /var/run/dovecot/auth-master However I thought since using vpopmail I don't need to use...
2013 Aug 01
4
Alert Email
...address.tld" fi # Set the Connect and Disconnect Messages echo -e "Hello,\nThis is an automatic notification from W2LIE.net.\nThe ${1} Live Scanner Feed has connected to the server on ${date} at ${time}hrs.\n\nThank you,\nPhil / w2lie" > /home/<user>/icecast/scripts/${1}_connect.txt # send an email using /bin/mail /bin/mail -s "${SUBJECT}" ${email} < /home/<user>/icecast/scripts/${1}_connect.txt #EOF
2013 Aug 01
0
Alert Email
...> # Set the Connect and Disconnect Messages > echo -e "Hello,\nThis is an automatic notification from W2LIE.net.\nThe > ${1} Live Scanner Feed has connected to the server on ${date} at > ${time}hrs.\n\nThank you,\nPhil / w2lie" > > /home/<user>/icecast/scripts/${1}_connect.txt > > # send an email using /bin/mail > /bin/mail -s "${SUBJECT}" ${email} < > /home/<user>/icecast/scripts/${1}_connect.txt > > #EOF > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://...
2010 Aug 04
1
[PATCH] Correctly detect the size of a block device over SSH
...ansfer/SSH.pm | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/lib/Sys/VirtV2V/Transfer/SSH.pm b/lib/Sys/VirtV2V/Transfer/SSH.pm index 66ec294..5f54f0e 100644 --- a/lib/Sys/VirtV2V/Transfer/SSH.pm +++ b/lib/Sys/VirtV2V/Transfer/SSH.pm @@ -138,7 +138,21 @@ sub _connect push(@command, 'ssh'); push(@command, '-l', $username) if (defined($username)); push(@command, $host); - push(@command, "stat -c %s $path; cat $path"); + + # Return the size of the remote path on the first line, followed by its +...
2013 Jul 24
2
Alert Email
It looks like those are bash scripts so try something like be sure your mail binary path is correct it may be somewhere else other then /bin echo "/bin/mail -s connecting someone at somewhere.com" > /home/icecast/bin/source-start chmod 775 /home/icecast/bin/source-start you may have a chown permissions issue too if the user that runs icecast can't see the
2010 Apr 09
1
[PATCH] Add SSH transfer method
...+ } + + my $uri = $conn->{uri}; + my $username = $conn->{username}; + my $password = $conn->{password}; + my $host = $conn->{hostname}; + + die("URI not defined for connection") unless (defined($uri)); + + my ($pid, $size, $fh, $error) = + _connect($host, $username, $path); + + my $vol = $target->create_volume($name, $size); + $vol->open(); + + for (;;) { + my $buffer; + # Transfer in 8k chunks + my $in = sysread($fh, $buffer, 8 * 1024); + die(user_message(__x("Error reading data from {path}: {e...
2010 Jun 18
1
Dovecot 2.0 auth socket error
...running as a particular user (in this case uid100 and gid100) to match the global mail systems needs. I use qmail as the delivery agent, and when qmail envokes deliver, I get the following errors in the qmail log files : @400000004c1b18f22ea7a05c delivery 1497: deferral: lda:_Error:_userdb_lookup:_connect(/usr/local/var/run/dovecot/auth-userdb)_failed:_Permission_denied_(euid=100(sn)_egid=100(sn)_missing_+w_perm:_/usr/local/var/run/dovecot/auth-userdb,_euid_is_not_dir_owner)/lda:_Fatal:_Internal_error_occurred._Refer_to_server_log_for_more_information./ Now, from what I can tell, this is complainin...
2019 Feb 04
2
Installing libvirt and Xen on Red Hat 7.5
...virtError: no connection driver available for xen:/// 2019-02-01 15:13:30.023 5091 ERROR nova.virt.libvirt.host Traceback (most recent call last): 2019-02-01 15:13:30.023 5091 ERROR nova.virt.libvirt.host File "/usr/lib/python2.7/site-packages/nova/virt/libvirt/host.py", line 460, in get_connection 2019-02-01 15:13:30.023 5091 ERROR nova.virt.libvirt.host conn = self._get_connection() 2019-02-01 15:13:30.023 5091 ERROR nova.virt.libvirt.host File "/usr/lib/python2.7/site-packages/nova/virt/libvirt/host.py", line 443, in _get_connection 2019-02-01 15:13:30.023 5091 ERROR nov...
2007 Apr 28
6
XRC Problem
...enuBar" name="ContactList_menubar"> <object class="wxMenu" name="clFile"> <label>_File</label> <object class="wxMenuItem" name="clfConnect"> <label>_Connect</label> <help>Connect to IM Server...</help> </object> <object class="wxMenuItem" name="clfDisconnect"> <label>_Disconnect</label> <help>Di...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...- } - - my $uri = $conn->{uri}; - my $username = $conn->{username}; - my $password = $conn->{password}; - my $host = $conn->{hostname}; - - die("URI not defined for connection") unless (defined($uri)); - - my ($pid, $size, $fh, $error) = - _connect($host, $username, $path); - - my $vol = $target->create_volume($name, $size); - $vol->open(); - - my $written = 0; - for (;;) { - my $buffer; - # Transfer in 8k chunks - my $in = read($fh, $buffer, 8 * 1024); - die(user_message(__x("Error reading d...
2018 Feb 27
2
Failed to get quota limits
...Started thread with >> > > > > > > > > > >> > > > > > > > > > index 1 >> > > > > > > > > > >> > > > > > > > > > \[2018-02-13 08:16:09.940491\] E \[socket.c:2327:socket\_connect\_finish\] >> > > > > > > > > > >> > > > > > > > > > 0-glusterfs: connection to ::1:24007 failed (Connection refused); >> > > > > > > > > > >> > > > > > > > > > disconn...
2018 Feb 24
0
Failed to get quota limits
...er\] 0-epoll: Started thread with > > > > > > > > > > > > > > > > > > > > index 1 > > > > > > > > > > > > > > > > > > > > \[2018-02-13 08:16:09.940491\] E \[socket.c:2327:socket\_connect\_finish\] > > > > > > > > > > > > > > > > > > > > 0-glusterfs: connection to ::1:24007 failed (Connection refused); > > > > > > > > > > > > > > > > > > > > disconnecting socket...
2018 Feb 27
0
Failed to get quota limits
...gt; > > > > > > > > > > > > > > > > > > > > > > index 1 > > > > > > > > > > > > > > > > > > > > > > > > \[2018-02-13 08:16:09.940491\] E \[socket.c:2327:socket\_connect\_finish\] > > > > > > > > > > > > > > > > > > > > > > > > 0-glusterfs: connection to ::1:24007 failed (Connection refused); > > > > > > > > > > > > > > > > > > > > &...
2018 Feb 23
2
Failed to get quota limits
...> [2018-02-13 08:16:09.940432] I [MSGID: 101190] >>>>>>>>> [event-epoll.c:629:event_dispatch_epoll_worker] 0-epoll: Started thread with >>>>>>>>> index 1 >>>>>>>>> [2018-02-13 08:16:09.940491] E [socket.c:2327:socket_connect_finish] >>>>>>>>> 0-glusterfs: connection to ::1:24007 failed (Connection refused); >>>>>>>>> disconnecting socket >>>>>>>>> [2018-02-13 08:16:09.940519] I [glusterfsd-mgmt.c:2134:mgmt_rpc_notify] >>>>>&...