Displaying 4 results from an estimated 4 matches for "sockfil".
Did you mean:
sockfile
2015 Sep 26
2
Is this a bug in CentOS-7 BackupPC?
...7 server (running kernel 3.10.0-229.14.1.el7.x86_64)
I get the following error in /var/log/BackupPC/LOG
2015-09-26 13:58:14 Reading hosts file
2015-09-26 13:58:14 unix bind() failed: No such file or directory
This message occurs in the Perl script /usr/share/BackupPC/bin/BackupPC :
my $sockFile = "/var/run/BackupPC/BackupPC.sock";
unlink($sockFile);
if ( !bind(SERVER_UNIX, sockaddr_un($sockFile)) ) {
print(LOG $bpc->timeStamp, "unix bind() failed: $!\n");
exit(1);
}
As far as I can see (I'm no guru) this is trying to...
2015 Sep 26
0
Is this a bug in CentOS-7 BackupPC?
....14.1.el7.x86_64) I get the following error in
> /var/log/BackupPC/LOG
>
> 2015-09-26 13:58:14 Reading hosts file 2015-09-26 13:58:14 unix
> bind() failed: No such file or directory
>
> This message occurs in the Perl script
> /usr/share/BackupPC/bin/BackupPC :
>
> my $sockFile = "/var/run/BackupPC/BackupPC.sock";
> unlink($sockFile); if ( !bind(SERVER_UNIX, sockaddr_un($sockFile))
> ) { print(LOG $bpc->timeStamp, "unix bind() failed: $!\n");
> exit(1); }
>
> As far as I can see (I'm no guru) this is trying to open a unix
>...
2015 Sep 26
2
Is this a bug in CentOS-7 BackupPC?
Fabian Arrotin wrote:
>> This message occurs in the Perl script
>> /usr/share/BackupPC/bin/BackupPC :
>>
>> my $sockFile = "/var/run/BackupPC/BackupPC.sock";
>> unlink($sockFile); if ( !bind(SERVER_UNIX, sockaddr_un($sockFile))
>> ) { print(LOG $bpc->timeStamp, "unix bind() failed: $!\n");
>> exit(1); }
>>
>> As far as I can see (I'm no guru) this is trying t...
2005 Jul 24
0
[Bug 2913] New: rsync of symlinks on >=bsd needs lutimes(2) and lchmod(2)
...and src perms when
creatings slinks. neither are updated in later runs. breaking ex2.
rm -r ./dstdir
srcdir:
lrwxrwx--- 1 u g 1 Jul 24 03:29:58 2005 a -> b
-rw-r----- 1 u g 0 Jul 24 03:29:58 2005 b
prw-rw---- 1 u g 0 Jul 24 03:29:58 2005 fifo
srwxrwx--- 1 u g 0 Jul 24 03:29:58 2005 sockfile
umask 0022
[root] rsync -axv --delete ./srcdir/ ./dstdir/
dstdir:
lrwxrwxrwx 1 u g 1 Jul 24 03:30:36 2005 a -> b
-rw-r----- 1 u g 0 Jul 24 03:29:58 2005 b
prw-rw---- 1 u g 0 Jul 24 03:29:58 2005 fifo
srwxrwx--- 1 u g 0 Jul 24 03:29:58 2005 sockfile
last time i looked this...