Re: [CentOS] RHEL 5.3 released

2009-01-21 Thread Tim Verhoeven
On Wed, Jan 21, 2009 at 1:08 AM, Akemi Yagi wrote: > On Tue, Jan 20, 2009 at 4:04 PM, Karanbir Singh wrote: >> Akemi Yagi wrote: >>> >>> http://www.centos.org/modules/newbb/viewtopic.php?topic_id=18223&forum=37 >>> >> >> Would it be possible to migrate this info to a wiki page ? So more >> people

Re: [CentOS] Apache Server Tuning for Performance

2009-01-21 Thread Ralph Angenendt
Kai Schaetzl wrote: > There's your limit. However, you should check with your hardware if upping > it is really desirable. With 4 GB I think you won't be able to handle much > more anyway. That really depends. If you only shove out static pages and have one or two or three odd cgis on the machin

Re: [CentOS] RHEL 5.3 released

2009-01-21 Thread Ralph Angenendt
Tim Verhoeven wrote: > But I'm wondering where we need to put it ? I was thinking in either > the general CentOS FAQ or in the CentOS 5 FAQ ? Anyone can think of a > better place ? I don't think people will find that when it's put in the FAQ, especially if work is being done on that page (like add

Re: [CentOS] Firefox error msg.

2009-01-21 Thread Ralph Angenendt
Bob Taylor wrote: > After installing my backup of /home and seeing firefox not restart, I > started it from the command line with the immediate error: > > Could not find compatible GRE between version 1.9.0.5 and 1.9.0.5. > > I'm sorry, I'm at a complete loss. What's a GRE? It's probably misspel

Re: [CentOS] ext4 in 5.3

2009-01-21 Thread Renato de Oliveira Diogo
Hi; Do you test in other file system? Like xfs or jfs? You can use the "time" command to get the exate time: # time cp /pathsource/file8g /pathdest/ Post here yours results. []s Renato de Oliveira Diogo Bacharel em Ciência da Computação UNESP - B

Re: [CentOS] Compile Problem

2009-01-21 Thread Joseph L. Casale
>OK - well, I am pretty much sold on Alfresco but I can't guarantee that >it will do the SSO with FF - it definitely will do AD and I think kicks >Viewpoint butt. Nice interface, do I understand this right: the only community version is a dev snapshot, and it needs java (shudder)? I just started

Re: [CentOS] Compile Problem

2009-01-21 Thread Craig White
On Wed, 2009-01-21 at 05:35 -0700, Joseph L. Casale wrote: > >OK - well, I am pretty much sold on Alfresco but I can't guarantee that > >it will do the SSO with FF - it definitely will do AD and I think kicks > >Viewpoint butt. > > Nice interface, do I understand this right: the only community ver

[CentOS] Web pages time out after server rebuild

2009-01-21 Thread Rob Kampen
Hi All, I have an old (2004) Intel based server with 4G of ram running Linux ndgonline.net 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 12:03:43 EST 2008 i686 i686 i386 GNU/Linux fully up to date using centOS rpms for apache, php, and mysql. I have just changed from dmraid to md raid for the OS on mirro

Re: [CentOS] Status of PostgreSQL and PHP in Testing

2009-01-21 Thread Peter Hopfgartner
Peter Hopfgartner wrote: > Dear CentOS developers > > I would like to have ask some questions about the PostgreSQL and PHP > packages in the current Testing repository for CentOS 5. > > In http://wiki.centos.org/QaWiki/TestingRepo there is a note, that the > testing period is about 3 weeks. Curre

Re: [CentOS] Apache Server Tuning for Performance

2009-01-21 Thread Kai Schaetzl
Ralph Angenendt wrote on Wed, 21 Jan 2009 10:52:59 +0100: > That really depends. If you only shove out static pages and have one or > two or three odd cgis on the machine, you can flatten down the httpd > binary quite a bit by throwing out unneeded modules. > > 500 to 750 clients shouldn't be tha

[CentOS] Help with find

2009-01-21 Thread Matt
This finds all files modified 5 minutes ago. find /home/*/ -cmin 5 -type f -mindepth 1 -maxdepth 1 I want to find all files modified 5 or less minutes ago. How do I do that? "find -mtime -1" only works in 24 hour increments. Matt ___ CentOS mailing l

Re: [CentOS] Help with find

2009-01-21 Thread Pintér Tibor
Matt wrote: > This finds all files modified 5 minutes ago. > > find /home/*/ -cmin 5 -type f -mindepth 1 -maxdepth 1 > > I want to find all files modified 5 or less minutes ago. How do I do > that? "find -mtime -1" only works in 24 hour increments. -cmin -5 t _

Re: [CentOS] Apache Server Tuning for Performance

2009-01-21 Thread nate
Ralph Angenendt wrote: > Kai Schaetzl wrote: >> There's your limit. However, you should check with your hardware if upping >> it is really desirable. With 4 GB I think you won't be able to handle much >> more anyway. > > That really depends. If you only shove out static pages and have one or > two

Re: [CentOS] Web pages time out after server rebuild

2009-01-21 Thread nate
Rob Kampen wrote: > How do I get some extra log info to track this down? Have you tried to run 'show full processlist' on mysql while the query is running? It should show all active queries, what they are doing and how long they have been running for. Also enable slow query logging and logging w

Re: [CentOS] ext4 in 5.3

2009-01-21 Thread nate
Renato de Oliveira Diogo wrote: > Hi; > > Do you test in other file system? Like xfs or jfs? > You can use the "time" command to get the exate time: > # time cp /pathsource/file8g /pathdest/ > > Post here yours results. I like to use rsync with --progress so it shows realtime updates on the status

Re: [CentOS] ext4 in 5.3

2009-01-21 Thread Peter Kjellstrom
On Wednesday 21 January 2009, nate wrote: > Renato de Oliveira Diogo wrote: > > Hi; > > > > Do you test in other file system? Like xfs or jfs? > > You can use the "time" command to get the exate time: > > # time cp /pathsource/file8g /pathdest/ > > > > Post here yours results. > > I like to use rsy

Re: [CentOS] Apache Server Tuning for Performance

2009-01-21 Thread Rainer Duffner
Kai Schaetzl schrieb: > Ralph Angenendt wrote on Wed, 21 Jan 2009 10:52:59 +0100: > > >> That really depends. If you only shove out static pages and have one or >> two or three odd cgis on the machine, you can flatten down the httpd >> binary quite a bit by throwing out unneeded modules. >> >> 5

Re: [CentOS] Help with find

2009-01-21 Thread Matt
>> find /home/*/ -cmin 5 -type f -mindepth 1 -maxdepth 1 >> >> I want to find all files modified 5 or less minutes ago. How do I do >> that? "find -mtime -1" only works in 24 hour increments. > > -cmin -5 I cant believe I missed that. Thanks. Matt __

Re: [CentOS] Web pages time out after server rebuild

2009-01-21 Thread Scott Silva
on 1-21-2009 7:14 AM Rob Kampen spake the following: > Hi All, > I have an old (2004) Intel based server with 4G of ram running > Linux ndgonline.net 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 12:03:43 EST > 2008 i686 i686 i386 GNU/Linux > fully up to date using centOS rpms for apache, php, and mysql. >

Re: [CentOS] Web pages time out after server rebuild

2009-01-21 Thread Rob Kampen
Scott Silva wrote: on 1-21-2009 7:14 AM Rob Kampen spake the following: Hi All, I have an old (2004) Intel based server with 4G of ram running Linux ndgonline.net 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 12:03:43 EST 2008 i686 i686 i386 GNU/Linux fully up to date using centOS rpms fo

Re: [CentOS] Web pages time out after server rebuild

2009-01-21 Thread Rob Kampen
nate wrote: Rob Kampen wrote: How do I get some extra log info to track this down? Have you tried to run 'show full processlist' on mysql while the query is running? It should show all active queries, what they are doing and how long they have been running for. Also

[CentOS] help with udev rules needed

2009-01-21 Thread rray_1
I am migrating from Fedora 8 to CentOS 5.2 I have usb dvd On F8 I have /etc/udev/rules/00-my-custom.rules BUS=="scsi", SYSFS{vendor}=="TSSTcorp", SYSFS{model}=="CDDVDW SH-S203N ",SYMLINK="dvd",OWNER="rray" When I plug in dvd I get $ ll /dev/scd1 lrwxrwxrwx 1 root root 3 Aug 25 08:17 /dev/scd1 ->

Re: [CentOS] Apache Server Tuning for Performance

2009-01-21 Thread RobertH
> > > KeepAliveTimeout 150 > >reduce this to 10 or 5. > > > Kai > > -- > Kai Schätzl, Berlin, Germany Kai, what do you think about the "general Timeout it is set to 300 ive never much thought about it, yet should we be consider and possible reduce that one too? - rh ___

Re: [CentOS] Firefox error msg.

2009-01-21 Thread Bob Taylor
On Wed, 2009-01-21 at 11:13 +0100, Ralph Angenendt wrote: > Bob Taylor wrote: > > After installing my backup of /home and seeing firefox not restart, I > > started it from the command line with the immediate error: > > > > Could not find compatible GRE between version 1.9.0.5 and 1.9.0.5. > > >

[CentOS] error installing Twinkle - libresolv.so.2(GLIBC_PRIVATE)

2009-01-21 Thread Mr.Vandeley
Hello, I have an error while try to install twinkle: # yum install twinkle [...] Resolving Dependencies --> Running transaction check ---> Package twinkle.i386 0:1.2-1.el5.rf set to be updated --> Processing Dependency: libresolv.so.2(GLIBC_PRIVATE) for package: twinkle --> Finished Dependency Res

Re: [CentOS] help with udev rules needed

2009-01-21 Thread Farkas Levente
rra...@comcast.net wrote: > I am migrating from Fedora 8 to CentOS 5.2 > I have usb dvd > > On F8 I have /etc/udev/rules/00-my-custom.rules > BUS=="scsi", SYSFS{vendor}=="TSSTcorp", SYSFS{model}=="CDDVDW SH-S203N > ",SYMLINK="dvd",OWNER="rray" > When I plug in dvd I get > $ ll /dev/scd1 > lrwxrwx

Re: [CentOS] RHEL 5.3 released

2009-01-21 Thread James A. Peltier
This is great news, I'm sure CentOS will be a great release. My question is will CentOS 5.3 support other architectures again? Namely IA64? I suspect not as I've been waiting since 5.0 for it. Is there are hardware issue, like not having any, that is delaying this? -- James A. Peltier Syste

Re: [CentOS] help with udev rules needed

2009-01-21 Thread rray_1
On Wed, 21 Jan 2009, Farkas Levente wrote: > rra...@comcast.net wrote: >> I am migrating from Fedora 8 to CentOS 5.2 >> I have usb dvd >> >> On F8 I have /etc/udev/rules/00-my-custom.rules >> BUS=="scsi", SYSFS{vendor}=="TSSTcorp", SYSFS{model}=="CDDVDW SH-S203N >> ",SYMLINK="dvd",OWNER="rray" >>

Re: [CentOS] error installing Twinkle - libresolv.so.2(GLIBC_PRIVATE)

2009-01-21 Thread Rex Dieter
Mr.Vandeley wrote: > I have an error while try to install twinkle: > # yum install twinkle > [...] > Resolving Dependencies > --> Running transaction check > ---> Package twinkle.i386 0:1.2-1.el5.rf set to be updated > --> Processing Dependency: libresolv.so.2(GLIBC_PRIVATE) for package: > Any id

Re: [CentOS] Web pages time out after server rebuild

2009-01-21 Thread Rob Kampen
Rob Kampen wrote: nate wrote: Rob Kampen wrote: How do I get some extra log info to track this down? Have you tried to run 'show full processlist' on mysql while the query is running? It should show all active queries, what they are doing and how long they have been running for.

Re: [CentOS] RHEL 5.3 released

2009-01-21 Thread Craig White
On Tue, 2009-01-20 at 23:40 +0200, Pasi Kärkkäinen wrote: > Hello list! > > http://www.redhat.com/about/news/prarchive/2009/rhel_5_3.html > gee...when is it going to be ready? ;-) seriously though, found this little tidbit which seems important to note (under known issues)... http://www.r

Re: [CentOS] Firefox error msg.

2009-01-21 Thread Ralph Angenendt
Bob Taylor wrote: > > Try "sudo xulrunner --register-global", because somehow firefox believes > > that it cannot find a working xulrunner instance on your machine. > > Your second request. > # xulrunner --register-global > # > This returns nothing. Yes, but does it work again after doing that? I

Re: [CentOS] RHEL 5.3 released

2009-01-21 Thread Joseph L. Casale
>To avoid this error, upgrade glibc first in a separate run: Nice! So all the systems that autoupdate won't have the logic :) Glad I don't do that... jlc ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] RHEL 5.3 released

2009-01-21 Thread Stephen John Smoogen
On Wed, Jan 21, 2009 at 2:34 PM, Joseph L. Casale wrote: >>To avoid this error, upgrade glibc first in a separate run: > > Nice! So all the systems that autoupdate won't have the logic :) > Glad I don't do that... Well we didn't get bitten by the problem on our 50 servers last nigth... but we pro

[CentOS] CentOS4 pam_tally2 config

2009-01-21 Thread Jim Perrin
Okay, it's been a while since I've messed with EL4, and apparently I've gone stupid with respect to pam and properly enabling pam_tally2 in an appropriate fashion. My notes are for EL5, so if someone would be so kind as to smack me in the right direction, I'd appreciate it. -- During times of uni

Re: [CentOS] CentOS4 pam_tally2 config

2009-01-21 Thread Stephen John Smoogen
On Wed, Jan 21, 2009 at 2:45 PM, Jim Perrin wrote: > Okay, it's been a while since I've messed with EL4, and apparently > I've gone stupid with respect to pam and properly enabling pam_tally2 > in an appropriate fashion. My notes are for EL5, so if someone would > be so kind as to smack me in the

Re: [CentOS] help with udev rules needed

2009-01-21 Thread Farkas Levente
rra...@comcast.net wrote: > On Wed, 21 Jan 2009, Farkas Levente wrote: > >> rra...@comcast.net wrote: >>> I am migrating from Fedora 8 to CentOS 5.2 >>> I have usb dvd >>> >>> On F8 I have /etc/udev/rules/00-my-custom.rules >>> BUS=="scsi", SYSFS{vendor}=="TSSTcorp", SYSFS{model}=="CDDVDW SH-S203N

Re: [CentOS] CentOS4 pam_tally2 config

2009-01-21 Thread Jim Perrin
On Wed, Jan 21, 2009 at 5:06 PM, Stephen John Smoogen wrote: > On Wed, Jan 21, 2009 at 2:45 PM, Jim Perrin wrote: >> Okay, it's been a while since I've messed with EL4, and apparently >> I've gone stupid with respect to pam and properly enabling pam_tally2 >> in an appropriate fashion. My notes a

Re: [CentOS] help with udev rules needed

2009-01-21 Thread rray_1
On Wed, 21 Jan 2009, Farkas Levente wrote: > rra...@comcast.net wrote: >> On Wed, 21 Jan 2009, Farkas Levente wrote: >> >>> rra...@comcast.net wrote: I am migrating from Fedora 8 to CentOS 5.2 I have usb dvd On F8 I have /etc/udev/rules/00-my-custom.rules BUS=="scsi", SYSF

[CentOS] Old Small Box

2009-01-21 Thread Mike -- EMAIL IGNORED
I have an old 400mHz Dell with a 20G hard drive and 125M ram. Can I install and run CentOS on it? Thanks, Mike. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] Old Small Box

2009-01-21 Thread Stephen John Smoogen
On Wed, Jan 21, 2009 at 4:06 PM, Mike -- EMAIL IGNORED wrote: > I have an old 400mHz Dell with a 20G hard drive > and 125M ram. Can I install and run CentOS on it? > Thanks, You can install/run the CentOS-3 OS. CentOS-4 might run. I do not think CentOS-5 would be able to be installed on the syst

Re: [CentOS] Old Small Box

2009-01-21 Thread James A. Peltier
On Wed, 21 Jan 2009, Stephen John Smoogen wrote: > On Wed, Jan 21, 2009 at 4:06 PM, Mike -- EMAIL IGNORED > wrote: >> I have an old 400mHz Dell with a 20G hard drive >> and 125M ram. Can I install and run CentOS on it? >> Thanks, > > You can install/run the CentOS-3 OS. CentOS-4 might run. I do

Re: [CentOS] Old Small Box

2009-01-21 Thread Robert Moskowitz
Mike -- EMAIL IGNORED wrote: > I have an old 400mHz Dell with a 20G hard drive > and 125M ram. Can I install and run CentOS on it? Bring the memory up to 256Mb. I have a number of test servers running on similar platforms. But you have to get the memory up to at least 256Mb... ___

Re: [CentOS] Old Small Box

2009-01-21 Thread Warren Young
James A. Peltier wrote: > > CentOS 5 requires 512MB for installation I had an EL5 install attempt fail on a VM with 512 MB of RAM. Big ugly anaconda Python stack dump type error. Upped the RAM for the VM, and it installed. ___ CentOS mailing list Ce

Re: [CentOS] Old Small Box

2009-01-21 Thread Scott Silva
on 1-21-2009 3:42 PM Robert Moskowitz spake the following: > Mike -- EMAIL IGNORED wrote: >> I have an old 400mHz Dell with a 20G hard drive >> and 125M ram. Can I install and run CentOS on it? > > Bring the memory up to 256Mb. > > I have a number of test servers running on similar platforms. Bu

Re: [CentOS] Old Small Box

2009-01-21 Thread Lanny Marcus
On Wed, Jan 21, 2009 at 6:37 PM, James A. Peltier wrote: > On Wed, 21 Jan 2009, Stephen John Smoogen wrote: >> On Wed, Jan 21, 2009 at 4:06 PM, Mike -- EMAIL IGNORED >> wrote: >>> I have an old 400mHz Dell with a 20G hard drive >>> and 125M ram. Can I install and run CentOS on it? > > CentOS 5

Re: [CentOS] Old Small Box

2009-01-21 Thread Kevin Krieser
You can install 5 on it, but you probably won't be too happy with it. Make sure to have more than the default amount of swap installed. On Jan 21, 2009, at 5:16 PM, Stephen John Smoogen wrote: > On Wed, Jan 21, 2009 at 4:06 PM, Mike -- EMAIL IGNORED > wrote: >> I have an old 400mHz Dell with

Re: [CentOS] Old Small Box

2009-01-21 Thread Kevin Krieser
Just to comment that this was with an actual RH installation DVD, not CentOS. The only systems I've installed CentOS on has had at least 1GB of RAM. On Jan 21, 2009, at 6:54 PM, Kevin Krieser wrote: > You can install 5 on it, but you probably won't be too happy with it. > Make sure to have m

[CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Amos Shapira
Hi All, Yes, I know, it's really really embarrassing to have to ask but I'm being pushed to the wall with PCI DSS Compliance procedure (http://en.wikipedia.org/wiki/PCI_DSS) and have to either justify why we don't need to install an anti-virus or find an anti-virus to run on our CentOS 5 servers.

Re: [CentOS] Old Small Box

2009-01-21 Thread Barry Brimer
> I have an old 400mHz Dell with a 20G hard drive > and 125M ram. Can I install and run CentOS on it? > Thanks, > Mike. My firewall is a Pentium 75 with 48 MB of RAM running CentOS 4.7 + current. I did a text based install, and the install took a very long time, but it works very well ..despit

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Ian Forde
On Thu, 2009-01-22 at 12:19 +1100, Amos Shapira wrote: > Hi All, > > Yes, I know, it's really really embarrassing to have to ask but I'm > being pushed to the wall with PCI DSS Compliance procedure > (http://en.wikipedia.org/wiki/PCI_DSS) and have to either justify why > we don't need to install a

Re: [CentOS] CentOS4 pam_tally2 config

2009-01-21 Thread Jim Perrin
On Wed, Jan 21, 2009 at 5:27 PM, Jim Perrin wrote: > The format is slightly different, and apparently I've caught a nasty > case of the stupid. So far the things I'm trying aren't working, so I > was hoping someone had a cut/paste example handy. Oversight on my part. It was enabled, but not bei

Re: [CentOS] Old Small Box

2009-01-21 Thread Ross Walker
On Jan 21, 2009, at 8:32 PM, Barry Brimer wrote: >> I have an old 400mHz Dell with a 20G hard drive >> and 125M ram. Can I install and run CentOS on it? >> Thanks, >> Mike. > > My firewall is a Pentium 75 with 48 MB of RAM running CentOS 4.7 + > current. I did a text based install, and the inst

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Amos Shapira
2009/1/22 Ian Forde : > On Thu, 2009-01-22 at 12:19 +1100, Amos Shapira wrote: >> Hi All, >> >> Yes, I know, it's really really embarrassing to have to ask but I'm >> being pushed to the wall with PCI DSS Compliance procedure >> (http://en.wikipedia.org/wiki/PCI_DSS) and have to either justify why

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Joseph L. Casale
>Whatever I do - it needs to be convincing enough to make the PCI >compliance guy tick the box. Eset has a current linux client, though their product *AND* support suck the biggest one. https://www.icsalabs.com/icsa/product.php?tid=dfgdf$gdhkkjk- for more HTH, jlc __

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Adam Tauno Williams
> Yes, I know, it's really really embarrassing to have to ask but I'm > being pushed to the wall with PCI DSS Compliance procedure > (http://en.wikipedia.org/wiki/PCI_DSS) and have to either justify why > we don't need to install an anti-virus or find an anti-virus to run on > our CentOS 5 servers.

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Les Bell
Ian Forde wrote: >> Yep - on the wikipedia page you referenced, look in the "Requirements" section, section 5. It says: "Use and regularly update anti-virus software on all systems commonly affected by malware" << I doubt Amos's QSA is using Wikipedia as his reference, unfortunately. The PCI D

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Ned Slider
Amos Shapira wrote: > 2009/1/22 Ian Forde : > >> same network as the Linux hosts, that should take care of the sweet spot >> of the AV argument. (Though if you're connected to a site via VPN or >> private link that has Windows boxes, that may be a different story.) > > Rightso. You reminded me -

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread John R Pierce
ClamAV is probably your best bet. That said, the question is, what do you scan? It can be used several ways, typically scanning files on demand... its not an intrusion detection system like most MS Windows scanners, where it automatically scans every file being read or written (while slowing

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Christopher Chan
> 2. Alternatively - what linux anti-virus (oh, the shame of typing this > word combination :() do you use which doesn't affect our systems > performance too much. > Sophos AV if you have to get something on. ___ CentOS mailing list CentOS@centos.org h

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread jkinz
On Thu, Jan 22, 2009 at 12:19:27PM +1100, Amos Shapira wrote: > Hi All, > > Yes, I know, it's really really embarrassing to have to ask but I'm > being pushed to the wall with PCI DSS Compliance procedure > (http://en.wikipedia.org/wiki/PCI_DSS) and have to either justify why > we don't need to in

Re: [CentOS] [Solved] Firefox error msg.

2009-01-21 Thread Bob Taylor
On Wed, 2009-01-21 at 22:31 +0100, Ralph Angenendt wrote: > Bob Taylor wrote: > > > Try "sudo xulrunner --register-global", because somehow firefox believes > > > that it cannot find a working xulrunner instance on your machine. > > > > Your second request. > > # xulrunner --register-global > > #

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Ian Forde
On Wed, 2009-01-21 at 21:06 -0500, Adam Tauno Williams wrote: > > Yes, I know, it's really really embarrassing to have to ask but I'm > > being pushed to the wall with PCI DSS Compliance procedure > > (http://en.wikipedia.org/wiki/PCI_DSS) and have to either justify why > > we don't need to install

Re: [CentOS] Apache Server Tuning for Performance

2009-01-21 Thread Kai Schaetzl
RobertH wrote on Wed, 21 Jan 2009 11:26:41 -0800: > what do you think about the "general Timeout > > it is set to 300 > > ive never much thought about it, yet should we be consider and possible > reduce that one too? I'm using 120, but I don't think reducing this value has much impact. Kai --

Re: [CentOS] Old Small Box

2009-01-21 Thread John
> -Original Message- > From: centos-boun...@centos.org > [mailto:centos-boun...@centos.org] On Behalf Of Barry Brimer > Sent: Wednesday, January 21, 2009 8:33 PM > To: CentOS mailing list > Subject: Re: [CentOS] Old Small Box > > > I have an old 400mHz Dell with a 20G hard drive > > and

[CentOS] Issues with Ldap client on Centos 5

2009-01-21 Thread ankush grover
Hi Friends, We are running some of the Centos 5 32 bit, 5.2 64-bit systems. These systems are ldap clients and the ldap server is Windows 2003 Server. Sometimes 1 or 2 services on these servers sucks 100% cpu and the load becomes high on the server. Below is an example where one the httpd process

Re: [CentOS] Antivirus for CentOS? (yuck!)

2009-01-21 Thread Les Bell
Ian Forde wrote: >> That depends upon how you define malware detection. Antivirus software for Linux typically scans for Windows viruses and malware. On the other hand, if you're talking about detection in the sense of Tripwire, or a cron job that runs a 'rpm -V' every night, I completely agre

Re: [CentOS] Old Small Box

2009-01-21 Thread Robert Moskowitz
Scott Silva wrote: > on 1-21-2009 3:42 PM Robert Moskowitz spake the following: > >> Mike -- EMAIL IGNORED wrote: >> >>> I have an old 400mHz Dell with a 20G hard drive >>> and 125M ram. Can I install and run CentOS on it? >>> >> Bring the memory up to 256Mb. >> >> I have a number o