Re: [CentOS] CentOS 6.2 on partitionable mdadm RAID1 (md_d0) - kernel panic with either disk not present

2012-06-21 Thread Arun Khan
On Thu, Jun 21, 2012 at 10:09 AM, Rob Kampen rkam...@reaching-clients.com wrote: snip sounds like the mirror is not in synch - when it is running with both drives, what does cat /proc/mdstat System boots up fully functional with both disks copy-paste root@centos62-raid1 ~ # cat

Re: [CentOS] Hanging issue with sudo command

2012-06-21 Thread Anthony Kamau
On 19/06/12 00:29, Kaplan, Andrew H. wrote: Recently it was observed the user account took longer to complete its login from a terminal window and console. It is also now having problems when running the sudo command. Essentially when the user runs the command, the latter hangs, and the

Re: [CentOS] CentOS 6.2-x86-64

2012-06-21 Thread Nate Duehr
On Jun 20, 2012, at 3:27 PM, Gene Heskett wrote: As for partiality, no way, synaptic, adapted for rpms is by far the best package manager I've used in the last 5 years since I bailed on fedora at about 6 or so. Understand that sentiment, Gene. I like aptitude myself for Debian-based

[CentOS] pastebin service with office LAN and not exposed to the Internet

2012-06-21 Thread Kaushal Shriyan
Hi, i would like to set a pastebin server within my organization in LAN is there a step by step guide to configure and install on CentOS 5.8? Regards Kaushal ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] Hanging issue with sudo command

2012-06-21 Thread Scott Robbins
On 19/06/12 00:29, Kaplan, Andrew H. wrote: Recently it was observed the user account took longer to complete its login from a terminal window and console. It is also now having problems when running the sudo command. Essentially when the user runs the command, the latter hangs, and

Re: [CentOS] pastebin service with office LAN and not exposed to the Internet

2012-06-21 Thread John Doe
From: Kaushal Shriyan kaushalshri...@gmail.com i would like to set a pastebin server within my organization in LAN is there a step by step guide to configure and install on CentOS 5.8? First, where do you find the pastebin software/code...? JD ___

Re: [CentOS] Hanging issue with sudo command

2012-06-21 Thread Kaplan, Andrew H.
Hello -- That apparently was the problem. The domain controller used by the system was offline for several hours. Once it came back on-line, the lag that I described in my posting was no longer present. -Original Message- From: centos-boun...@centos.org

Re: [CentOS] Hanging issue with sudo command

2012-06-21 Thread Kaplan, Andrew H.
Hello -- Apparently the problem had to with the absence of the domain controller. The domain controller used by the system was offline for several hours. Once it came back on-line, the lag that I described in my posting was no longer present. -Original Message- From:

[CentOS] reinventing the wheel? page checker

2012-06-21 Thread Bob Hoffman
Not sure if there is an app like this yet. I want to keep tabs on my web applications and thought of using a 'page checker'/ I was thinking either running a sum on the directory or each file...but thinking a simple date check would be fine. The idea is web application, except the uploads area

Re: [CentOS] reinventing the wheel? page checker

2012-06-21 Thread m . roth
Bob Hoffman wrote: Not sure if there is an app like this yet. I want to keep tabs on my web applications and thought of using a 'page checker'/ I was thinking either running a sum on the directory or each file...but thinking a simple date check would be fine. The idea is web application,

Re: [CentOS] UC reinventing the wheel? page checker

2012-06-21 Thread Rushton Martin
Have you looked at inotify(7) ? You'll need to do a bit of coding though. Martin Rushton HPC System Manager, Weapons Technologies Tel: 01959 514777, Mobile: 07939 219057 email: jmrush...@qinetiq.com www.QinetiQ.com QinetiQ - Delivering customer-focused solutions Please consider the

Re: [CentOS] reinventing the wheel? page checker

2012-06-21 Thread John Doe
From: Bob Hoffman b...@bobhoffman.com So thinking of running a script every minute looking for files where the date changed since 'x' date or something like that. Anything out there like that? You have inotify that can monitor a directory for any change of the type you want. Or make a

[CentOS] basic auth fails

2012-06-21 Thread Tim Dunphy
Hello, I've setup apache basic auth on by web server to protect my nagios site. It's been working just fine, but suddenly it stopped accepting passwords even tho they are being typed in correctly. I was wondering if I could get some advice on how to troubleshoot this? I'm on a centos 5.4

Re: [CentOS] basic auth fails

2012-06-21 Thread Bob Hoffman
On 6/21/2012 10:03 AM, Tim Dunphy wrote: Hello, I've setup apache basic auth on by web server to protect my nagios site. It's been working just fine, but suddenly it stopped accepting passwords even tho they are being typed in correctly. I was wondering if I could get some advice on how to

Re: [CentOS] CentOS 6.2-x86-64

2012-06-21 Thread Leonard den Ottolander
Hello Gene, On Wed, 2012-06-20 at 15:59 -0400, Gene Heskett wrote: header.cc:77: error: invalid conversion from ‘const char*’ to ‘char*’ Lines 77-78 in that file: if (!(dom = strrchr (msgid, '@'))) return -1; Obviously strrchr() tries to convert the header spec here from line 35:

Re: [CentOS] CentOS 6.2-x86-64

2012-06-21 Thread m . roth
Leonard den Ottolander wrote: Hello Gene, On Wed, 2012-06-20 at 15:59 -0400, Gene Heskett wrote: header.cc:77: error: invalid conversion from ‘const char*’ to ‘char*’ Lines 77-78 in that file: if (!(dom = strrchr (msgid, '@'))) return -1; Obviously strrchr() tries to convert the

Re: [CentOS] reinventing the wheel? page checker

2012-06-21 Thread Les Mikesell
On Thu, Jun 21, 2012 at 8:17 AM, Bob Hoffman b...@bobhoffman.com wrote: Not sure if there is an app like this yet. I want to keep tabs on my web applications and thought of using a 'page checker'/ I was thinking either running a sum on the directory or each file...but thinking a simple date

Re: [CentOS] CentOS 6.2-x86-64

2012-06-21 Thread Leonard den Ottolander
On Thu, 2012-06-21 at 10:46 -0400, m.r...@5-cent.us wrote: Or just if (!(strrchr ( msgid, '@' ))) { return -1; } In which case the declaration of dom can be safely removed. -- mount -t life -o ro /dev/dna /genetic/research ___ CentOS

Re: [CentOS] basic auth fails

2012-06-21 Thread John Doe
From: Tim Dunphy bluethu...@gmail.com I've setup apache basic auth on by web server to protect my nagios site. It's been working just fine, but suddenly it stopped accepting passwords even tho they are being typed in correctly. I was wondering if I could get some advice on how to troubleshoot

Re: [CentOS] Failing Network card

2012-06-21 Thread Chuck Munro
Date: Wed, 20 Jun 2012 10:54:33 -0700 From: John R Piercepie...@hogranch.com Subject: Re: [CentOS] Failing Network card To:centos@centos.org Message-ID:4fe20e59.20...@hogranch.com Content-Type: text/plain; charset=ISO-8859-1; format=flowed On 06/20/12 8:44 AM, Gregory P. Ennis wrote:

Re: [CentOS] reinventing the wheel? page checker

2012-06-21 Thread Keith Roberts
On Thu, 21 Jun 2012, Bob Hoffman wrote: To: CentOS@centos.org From: Bob Hoffman b...@bobhoffman.com Subject: [CentOS] reinventing the wheel? page checker Not sure if there is an app like this yet. I want to keep tabs on my web applications and thought of using a 'page checker'/ *snip*

[CentOS] official linux raid mailing list?

2012-06-21 Thread Alan McKay
Hey folks, Google seems to bring up a few things and I was wondering if there might be an official mailing list for linux RAID? thanks, -Alan -- “Don't eat anything you've ever seen advertised on TV”          - Michael Pollan, author of In Defense of Food

Re: [CentOS] official linux raid mailing list?

2012-06-21 Thread Clifford Trueman
Not aware of any lists for just RAID configurations - I'm sure most disk, filesystem or raid questions can be asked in general. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] official linux raid mailing list?

2012-06-21 Thread Stephan van Hienen
https://raid.wiki.kernel.org/index.php/Linux_Raid Stephan ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] official linux raid mailing list?

2012-06-21 Thread Keith Keller
On 2012-06-21, Alan McKay alan.mc...@gmail.com wrote: Google seems to bring up a few things and I was wondering if there might be an official mailing list for linux RAID? If you are talking specifically about linux md RAID, the official list is here:

Re: [CentOS] official linux raid mailing list?

2012-06-21 Thread Alan McKay
On Thu, Jun 21, 2012 at 1:54 PM, Keith Keller kkel...@wombat.san-francisco.ca.us wrote: If you are talking specifically about linux md RAID, the official list is here: http://vger.kernel.org/vger-lists.html#linux-raid yes that is exactly what i was looking for - thanks! -- “Don't eat

Re: [CentOS] CentOS 6.2 on partitionable mdadm RAID1 (md_d0) - kernel panic with either disk not present

2012-06-21 Thread Scott Silva
on 6/20/2012 11:34 PM Arun Khan spake the following: On Thu, Jun 21, 2012 at 10:09 AM, Rob Kampen rkam...@reaching-clients.com wrote: snip sounds like the mirror is not in synch - when it is running with both drives, what does cat /proc/mdstat System boots up fully functional

Re: [CentOS] basic auth fails

2012-06-21 Thread Александр Кириллов
I've setup apache basic auth on by web server to protect my nagios site. It's been working just fine, but suddenly it stopped accepting passwords even tho they are being typed in correctly. I was wondering if I could get some advice on how to troubleshoot this? Check permissions and selinux

Re: [CentOS] reinventing the wheel? page checker

2012-06-21 Thread Bob Hoffman
On 6/21/2012 12:44 PM, Keith Roberts wrote: On Thu, 21 Jun 2012, Bob Hoffman wrote: To: CentOS@centos.org From: Bob Hoffmanb...@bobhoffman.com Subject: [CentOS] reinventing the wheel? page checker Not sure if there is an app like this yet. I want to keep tabs on my web applications and

Re: [CentOS] reinventing the wheel? page checker

2012-06-21 Thread Kahlil Hodgson
On 22/06/12 07:59, Bob Hoffman wrote: On 6/21/2012 12:44 PM, Keith Roberts wrote: On Thu, 21 Jun 2012, Bob Hoffman wrote: To: CentOS@centos.org From: Bob Hoffmanb...@bobhoffman.com Subject: [CentOS] reinventing the wheel? page checker Not sure if there is an app like this yet. I want to

Re: [CentOS-virt] Basic shared storage + KVM

2012-06-21 Thread Philip Durbin
To allow for live migration between hypervisors, I've been using NFS for shared storage of the disk images for each of my virtual machines. Live migration works great, but I'm concerned about performance as I put more and more virtual machines on this infrastructure. The Red Hat docs warn

Re: [CentOS-virt] Fencing question(s)

2012-06-21 Thread Digimer
On 06/21/2012 01:01 PM, Steve Campbell wrote: I've got a Centos 5.8 box that I use for testing Xen VMs. I'm trying to setup some Centos 6.2 hosts in a high availability situation. I've tried the pacemaker route and couldn't get the connection established, so thought I'd try the RH-preferred

[CentOS-es] OCFS2 en CENTOS 6

2012-06-21 Thread Jesus HERNANDEZ MARTIN
Buenos días: Estoy intentando instalar OCFS2 en un CENTOS 6 pero me da el siguiente error: error: Error de dependencias: kernel = 2.6.18-308.8.1.el5 se necesita para ocfs2-2.6.18-308.8.1.el5-1.4.10-1.el5.x86_64 Estoy utilizando el kernel 2.6.32-220.23.1.el6.x86_64 #1 SMP Mon Jun 18

Re: [CentOS-es] OCFS2 en CENTOS 6

2012-06-21 Thread Ernesto Pérez Estévez
On 06/20/2012 05:06 AM, Jesus HERNANDEZ MARTIN wrote: Buenos días: Estoy intentando instalar OCFS2 en un CENTOS 6 pero me da el siguiente error: error: Error de dependencias: kernel = 2.6.18-308.8.1.el5 se necesita para ocfs2-2.6.18-308.8.1.el5-1.4.10-1.el5.x86_64 veamos bien

Re: [CentOS-es] Problemas para instalar el programa Gaussian

2012-06-21 Thread Luciano Andrés Chiarotto
Hola Carlos. Gracias por tu respuesta. La página que vos me recomendas no encuentro el paquete perl-params-utils2. También lo busqué en yum search perl-params-utils2 # y no aparece. Estoy cometiendo algún error ? Nuevamente agradezco por tu respuesta y te mando un gran abrazo. Luciano El

[CentOS-es] Consumo de disco duro, log de trabajo con unidad dvd

2012-06-21 Thread Juan Pablo Botero
Saludos. Desde hace días dos servidores con Centos 6 quedan estáticos y se hace necesario reiniciarlos por continuo trabajo con disco duro. Revisando logs veo un reporte desde hace varios días: argos kernel: ATAPI device hda: argos kernel: Error: Not ready -- (Sense key=0x02) argos kernel:

Re: [CentOS-es] Consumo de disco duro, log de trabajo con unidad dvd

2012-06-21 Thread Ernesto Pérez Estévez
On 06/21/2012 01:02 PM, Juan Pablo Botero wrote: Saludos. Desde hace días dos servidores con Centos 6 quedan estáticos y se hace necesario reiniciarlos por continuo trabajo con disco duro. Revisando logs veo un reporte desde hace varios días: argos kernel: ATAPI device hda: argos kernel:

[CentOS-es] IPTables, DNS y postfix

2012-06-21 Thread AraDaen
Hola, He instalado un servidor con Centos 6.2 para alojar varias webs que tengo, para lo que, entre otras cosas tengo bind configurado como servidor DNS y postfix con dovecot para el servicio de correo (pop3, pop3s, imap, imaps, smtp+tls). El sistema funciona perfectamente,sin habilitar iptables,