similar to: i386->amd64: tls-certificate cannot be read anymore

Displaying 20 results from an estimated 1000 matches similar to: "i386->amd64: tls-certificate cannot be read anymore"

2007 Jul 22
2
httpd failed with a new install of 5.0
Everyone, I have been working on a new installation of CentOS 5.0 on a x86_64 machine. The installation has gone well except for httpd. When I start httpd with LogLevel turned to debug all I get is an immediate failure with the following errors the logs: /var/log/httpd/error_log: [Sun Jul 22 13:00:31 2007] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) /var/log/ssl_error.log:
2012 May 13
6
Puppetmaster with apache/passenger on SL6
Dear experts, Since I''ve moved my *puppetmaster* form SL5 (Scientific Linux) to SL6 with SELinux on, I''m facing loads of trouble. I also move away from WEBrick to apache/passenger, following the instruction here: http://projects.puppetlabs.com/projects/1/wiki/Using_Passenger > and I can''t start httpd any more. It fails with this: Starting httpd: (98)Address
2005 Jan 23
2
logcheck-database -- volatile?
A new archive was announced for packages that have need for frequent changes [see below]. In theory, we should not have to update logcheck rules in Sarge, because we know that it's packages, with the exception of security updates will remain constant. This does not change the fact that we may wish to update the database on sarge <: Any thoughts? -Todd ----- Forwarded message from
2009 Jan 05
1
New SSL certificate problem
Our DC has been using a Verisign certificate. Over the past year, we've been using a Digicert Wildcard Plus certificate for almost all of our machines, and I wanted to switched over our DC mailserver. I used the following command to generate the CSR and key: openssl req -new -newkey rsa:1024 -nodes -out star_bard_edu.csr -keyout star_bard_edu.key -subj "/C=US/ST=NY/L=ourtown/O=Bard
2006 Jul 25
2
Dovecot IMAP and Mac OS X Mail.app
Hi All, I recently switched our Courier IMAP server over to Dovecot primarily for performance reasons. Server OS is Debian Sarge with Dovecot packages from backports.org (v 1.0.rc2-1bpo1). Access from Thunderbird and Horde worked fine with some shared folders defined and the Courier compatibility private folder stanza. Initial testing with Mail.app showed that, although the folder listing was
2005 Aug 09
2
error compiling asterisk on solaris
hello, can anyone help me? im gettitng this error when i tried runnin make on solaris 9 rm -f include/asterisk/version.h.tmp make[1]: `ast_expr.a' is up to date. make[1]: Leaving directory `/export/home/fst/chris/cvs/asterisk' gcc -g -o asterisk io.o sched.o logger.o frame.o loader.o config.o channel.o t ranslate.o file.o say.o pbx.o cli.o
2019 Jan 29
3
Samba and UFW
Here is the ufw.log after enabling logging medium and trying to connect to the windows net. Unfortunately the web Microsoft page is in German. I think it says window uses smb1 syntax. Jan 27 15:11:09 martin-RB042AV-ABA-a1410y kernel: [ 887.241685] [UFW BLOCK] IN=enp2s5 OUT= MAC=00:19:21:a2:11:5e:74:27:ea:ab:1e:e0:08:00 SRC=192.168.254.15 DST=192.168.254.39 LEN=90 TOS=0x00 PREC=0x00 TTL=128
2019 Jan 28
1
Samba and UFW
Rowland, Got more problems after I copied the requested files using gedit I can no longer connect to the Windows 8.1 PC. The error is "Unable to mount location - Failed to retrieve list from service - Invalid argument. I have no idea where this one comes from. Have rebooted both machines - no change. Without being connected to the network I cannot list the current smb.conf file on the
2007 Aug 07
3
About grep
Hi,everyone. I have a problem when using the grep. for example: a <- c("aa","aba","abac") b<- c("ab","aba") I want to match the whole word,so grep("^aba$",a) it returns 2 but when I used it a more useful way: grep("^b[2]$",a), it doesn't work at all, it can't find it, returning integer(0). How can I chang the
2010 Aug 04
6
applying strsplit to a whole column
I am sorry, I'd like to split my column ("names") such that all the beginning of a string ("X..") is gone and only the rest of the text is left. x<-data.frame(names=c("X..aba","X..abb","X..abc","X..abd")) x$names<-as.character(x$names) (x) str(x) Can't figure out how to apply strsplit in this situation - without using a
2012 Aug 14
0
SayUnixTime quandry
Hi Gang, Hopefully somebody out there has a "doh" for this one. My dialplan announces the date and time using SayUnixTime. When I run this: exten => 36225,1,Set(ABA=999999999) exten => 36225,n,Background(telbank/${ABA}/${CHANNEL(language)}/thetimeis) exten => 36225,n,sayunixtime(,,Abe 'digits/at' IMP) I get this CLI output -- Executing
2016 Jun 04
0
factors with non-unique ("duplicated") levels have been deprecated since 2009 -- are *more* deprecated now -- and why you should be hesitant misusing suppressWarnings()
>From this bug report (it's a proposal for speedup only, not a bug), https://bugs.r-project.org/bugzilla/show_bug.cgi?id=16895#c6 the fact that you can construct factors with non-unique aka "duplicated" levels in R has been re-raised. As mentioned there, we had a small discussion here (on 'R-devel') a bit more than 7 years ago, where I had said that indeed R core had
2008 Mar 12
3
Converting a data frame with values into a matrix/
Dear Group, I have a data frame like the following: x <- c("Mike","A",0.01) x1 <- c("Carl","A",0.2) x2 <- c("Gene","C",0.3) x3 <- c("James","A",-0.3) x4 <- c("Dough","B",0) xx <- rbind(x,x1,x2,x3,x4) colnames(xx)<-c("Name","Class","NES") xx
2019 Jan 29
2
Samba and UFW
Rowland, I found the reason for the "wrong argument" error. The windows firewall was set to block remote connections. Fixed that now I'm able to connect to the network. Now I'm back to the original problem. That is I cannot connect to the windows network with ufw enabled. Error "Cannot mount location - file or directory does not exist". If I press ok the error
2018 Mar 24
0
How to integrate a dynamic code within a R script?
Hi, I am working on a script which should includes a dynamic listing, i.e. # SCRIPT BEGINS # some R procedures here # DYNAMIC PART BEGINS d1$X5 <-f1("AAA") d1$X5 <-f1("AAa") d1$X5 <-f1("ABa") # etc... d1$X6 <-f2("AAA") d1$X6 <-f2("AAs") d1$X6 <-f2("ABs") # etc... # DYNAMIC PART ENDS # other procedures here # SCRIPT
2019 Jan 30
6
Samba and UFW
Rowland, The computer name 'martin-RB042AV-ABA-a1410y' was set by Linux Mint when it was installed. I'm not sure I can change it. I check it on the Mint forum. I'll turn off the smb... feature and see what happens. Yes the ports listed below are open and set to pass through the firewall. Should I unset the netbios name". Going to try the modification to the ufw rules file as
2019 Jan 29
2
Samba and UFW
Reindl, I will check that. Not sure how fix it. Will look on internet. Would you give some more information on the subject. Thanks Sent from my iPad Marty (843)-546-4822 > On Jan 29, 2019, at 10:43 AM, Reindl Harald <h.reindl at thelounge.net> wrote: > > > >> Am 29.01.19 um 16:39 schrieb Marty via samba: >> Here is the ufw.log after enabling logging medium and
2016 Dec 24
0
AUTOREPLY Allow direct connection between some (but not all) node...
Sehr geehrte Damen und Herren, Ab dem 23.12.2016 bis einschließlich 06.01.2017 sind wir im Weihnachtsurlaub. Ab dem 09.01.2017 stehen wir Ihnen wieder wie gewohnt zur Verfügung. Wir wünschen Ihnen und Ihrer Familie ein frohes und gesegnetes Weihnachtsfest und einen Guten Rutsch ins neue Jahr. Mit freundlichen Grüßen Ihr Hardy Barth - Team EDV- u. Elektrotechnik Hardy Barth GmbH
2011 Apr 13
5
for loop performance
Dear list I am running some simulations in R involving reading in several hundred datasets, performing some statistics and outputting those statistics to file. I have noticed that it seems that the time it takes to process of a dataset (or, say, a set of 100 datasets) seems to take longer as the simulation progresses. Has anyone else noticed this? I am curious to know if this has to do with how R
2000 Jan 21
2
\\<Samba-Server>\nobody : feature or bug ?
Hello! I just noticed a behavior of samba I am wundering about: I have a Samba-Server with a [homes] section. As user "barth" I conect to this using \\<Samba-Server>\<any username> permission is checked for "barth" with his password and access is granted with the rights of barth to the HOME-directory of <any username>. So far so good. This also works