Re: [CentOS] php53 and eacclerator

2011-04-13 Thread Raj kumar
ok

-Original Message-
From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf
Of Rainer Traut
Sent: 13 April 2011 17:57
To: centos@centos.org
Subject: Re: [CentOS] php53 and eacclerator

 Hi.
 There does not seem to be a php53-eaccelerator in standard Centos yum
 channels, from what I can see. That is a mainstay for us. Has anyone
 found that any particular php53-eacclerator from other locations play
 well with it?
 Thanks.

Hi Geoff,

I have rebuild the one from remi's repo with some minor tweaks to pull 
in php53 stuff instead of php. It's not yet in production here but it 
works in testing... ymmv. Can give you the spec file if you want.

Rainer
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] how to separate individual logs?

2010-11-29 Thread Raj kumar
Please unsubscribe the side on my email

-Original Message-
From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf
Of John Doe
Sent: 29 November 2010 16:50
To: CentOS mailing list
Subject: Re: [CentOS] how to separate individual logs?

From: hadi motamedi motamed...@gmail.com

 I have captured a file  in my centos showing logs captured from  many
 modules concurrently. Please find attached a sample of the file.  As
 you see, there are logs from individual modules that have been
 captured  concurrently. For example, there are logs from
 IPTR,SNMP,HLR,TCAP,XAPP,and  SCCP modules but they are coming
 concurrently.Each log has the header name of  its accompanied module in
 the beginning. I need to have the log of each  modules separately. Can
 you please show me the power of centos on how to  separate individual
 module's logs from the whole?

Here is The Power of CentOS!!!  (in approximately 3 minutes...)

cat edit.txt | while read LINE; do
  echo $LINE | grep -q '\.\.'
  if [ $? -eq 0 ]; then
LOGFILE=`echo $LINE | cut -d' ' -f1`.log
  else
echo $LINE  $LOGFILE
  fi
done

JD

PS: I wonder if I am doing your school homework...


  
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos