Re: [CentOS] Regd: SeLinux Configuration

2008-10-13 Thread Balaji

Dear All,
  I have executed the following command and i have changed the 
"/etc/selinux/config" file

  and reboot the PC also
  setenforce 1
  i have getting the following message only
  setenforce: SELinux is disabled

Regards
-S.Balaji


Ian Blackwell wrote:


Balaji wrote:
 


*   Can any one help me or guide me to
 1. Enable the selinux
   


setenforce 1

Use "getenforce" to determine the current status of selinux.  Look in
/etc/selinux/config for details of policy being used - e.g. targeted.
 


 2. Selinux Customize my own policy
   


man setsebool
man getsebool

These will help you modify options in the supplied policies.  For
example, use "getsebool -a | grep http" to list all selinux options and
filter the list for those pertaining to http.  You can of course create
your own policy and local customisations based on audit logs etc, but
I've not ventured down this path myself.  Others on the list will be
able to assist if you need to go that way.

Hope that gets you started :)

Cheers,

Ian
___
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] Regd: SeLinux Configuration

2008-10-13 Thread Ian Blackwell
Balaji wrote:
> *   Can any one help me or guide me to
>   1. Enable the selinux
setenforce 1

Use "getenforce" to determine the current status of selinux.  Look in
/etc/selinux/config for details of policy being used - e.g. targeted.
>   2. Selinux Customize my own policy
man setsebool
man getsebool

These will help you modify options in the supplied policies.  For
example, use "getsebool -a | grep http" to list all selinux options and
filter the list for those pertaining to http.  You can of course create
your own policy and local customisations based on audit logs etc, but
I've not ventured down this path myself.  Others on the list will be
able to assist if you need to go that way.

Hope that gets you started :)

Cheers,

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


[CentOS] Regd: SeLinux Configuration

2008-10-13 Thread Balaji

Dear All,

  Currently i have using CentOS4.4 and Kernel Version is 2.6.9-42.EL.
  I have disabled selinux on kickstart installation and command is 
*selinux --disabled

*   Can any one help me or guide me to
  1. Enable the selinux
  2. Selinux Customize my own policy

Regards
-S.Balaji

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


Re: [CentOS] mysql 5 for centos 5.2

2008-10-13 Thread John R Pierce

Mark Quitoriano wrote:

What do you recommend me to do so i can optimize my database on a
multi-core processor? and i haven't got an answer for the mysql
package for centos 5 is the multi-threading supported?
  


each connection to mysql spawns a thread, however under various 
conditions the threads can block each other, including if they are 
stacking up on table locks to update the same table.


otherwise, yes, mysql is fully multithreaded, as long as you're making 
multiple queries concurrently via different connections



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


Re: [CentOS] yum: not updating kernel

2008-10-13 Thread notconfusedaboutthattoday

Anthony Kamau wrote:
> 
> Hi.  I recently switched my CentOS kernel to 2.6.27, manually.  Is there

> a way to take it "off the list" of possible yum updates?  I want to
> handle kernel stuff myself.
> 


Edit /etc/yum.conf
Below excerpt from `man yum.conf'
exclude  List of packages to exclude from updates or installs. This should
 be a space separated list.  Shell globs using wildcards (eg. *
 and ?) are allowed.
  


Sorry, man, my bad for not reading the man page.  No food pellet for 
me.  :-(

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


RE: [CentOS] yum: not updating kernel

2008-10-13 Thread Anthony Kamau
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of [EMAIL PROTECTED]
> Sent: Tuesday, 14 October 2008 2:25 PM
> To: CentOS mailing list
> Subject: [CentOS] yum: not updating kernel
> 
> Hi.  I recently switched my CentOS kernel to 2.6.27, manually.  Is there
> a way to take it "off the list" of possible yum updates?  I want to
> handle kernel stuff myself.
> 

Edit /etc/yum.conf
Below excerpt from `man yum.conf'
exclude  List of packages to exclude from updates or installs. This should
 be a space separated list.  Shell globs using wildcards (eg. *
 and ?) are allowed.



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


Re: [CentOS] mysql 5 for centos 5.2

2008-10-13 Thread Mark Quitoriano
On Sat, Oct 11, 2008 at 12:56 AM, Filipe Brandenburger
<[EMAIL PROTECTED]> wrote:
> On Fri, Oct 10, 2008 at 11:50, Mark Quitoriano <[EMAIL PROTECTED]> wrote:
>> Does the mysql in centos compiled with multi processor support? i have
>> a mysql in centos 5 running in a core2duo processor and it seems that
>> it only uses 1 processor.
>
> How many tables are you querying in MySQL?
>
> If you use MyISAM tables (still the default), only one thread can
> access a table at a time, so you won't get more performance out of SMP
> to accesses to the same table.
>

Hi,

What do you recommend me to do so i can optimize my database on a
multi-core processor? and i haven't got an answer for the mysql
package for centos 5 is the multi-threading supported?

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


[CentOS] yum: not updating kernel

2008-10-13 Thread notconfusedaboutthattoday
Hi.  I recently switched my CentOS kernel to 2.6.27, manually.  Is there 
a way to take it "off the list" of possible yum updates?  I want to 
handle kernel stuff myself.


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


Re: [CentOS] mysql 5 for centos 5.2

2008-10-13 Thread Mark Quitoriano
On Sat, Oct 11, 2008 at 12:03 AM, John R Pierce <[EMAIL PROTECTED]> wrote:
> Mark Quitoriano wrote:
>>
>> HI,
>>
>> Does the mysql in centos compiled with multi processor support? i have
>> a mysql in centos 5 running in a core2duo processor and it seems that
>> it only uses 1 processor.
>>
>
> how many connections are you making to mysql?
>


around 50-100 connection
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] yum search priority protections

2008-10-13 Thread Spiro Harvey
>  $ yum search *gtk*

I think you're confusing the new syntax for "yum provides"

"yum search" does not need wildcards, "yum provides" usually does.

-- 
Spiro Harvey  Knossos Networks Ltd
021-295-1923www.knossos.net.nz

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


Re: [CentOS] yum search priority protections

2008-10-13 Thread Akemi Yagi
On Mon, Oct 13, 2008 at 5:21 PM, Stephen Harris <[EMAIL PROTECTED]> wrote:
> On Tue, Oct 14, 2008 at 11:17:32AM +1100, hce wrote:
>>  $ yum search *gtk*
>
> Try
>  yum search '*gtk*'
> or
>  yum search \*gtk\*
> to stop possible shell expansion.

Just do:

yum search gtk

Or use list instead:

yum list \*gtk\*

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


Re: [CentOS] yum search priority protections

2008-10-13 Thread Stephen Harris
On Tue, Oct 14, 2008 at 11:17:32AM +1100, hce wrote:
>  $ yum search *gtk*

Try
  yum search '*gtk*'
or
  yum search \*gtk\*
to stop possible shell expansion.

-- 

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


[CentOS] yum search priority protections

2008-10-13 Thread hce
Hi,

I am running CentOS 5.2. My yum search used working, but it did not
work for any search now due to following problems. Pleae advise what
was wrong with it.

 $ yum search *gtk*
Loading "priorities" plugin
0 packages excluded due to repository priority protections
No Matches found

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


[CentOS] Re: vsftpd

2008-10-13 Thread Dobry Dobrev
Bob Hoffman wrote:
>> I'm using vsftpd as  FTP server, and I'd like to chroot my FTP users 
>> to their home dir. How can I do it? i.e. "jailing"
>> them in their home dir...
>> at the moment I have the following issues the user when they login to 
>> ftp server they go to the main directory /var/ftp/
>>
> 
> Here is what I did, full discussion at this link
> http://www.bobhoffman.com/forums/viewtopic.php?f=4&t=11
> 
> Here is my file. Each user is locked into his folder listed in the
> etc/pssword file.
> 
> 
> ftpd_banner=Welcome to my webserver! 
> listen=YES 
> pam_service_name=vsftpd 
> anonymous_enable=NO 
> local_enable=YES 
> session_support=NO 
> write_enable=YES 
> chroot_local_user=YES 
> 
> #supposed default settings added for security and other redhat settings 
> userlist_deny=YES 
> userlist_enable=YES 
> #userlist file is default to /etc/vsftpd.userlist 
> local_umask=022 


and here is mine

anonymous_enable=NO
local_enable=YES
chroot_local_user=YES
pasv_max_port=8000
pasv_min_port=7000
use_localtime=YES
deny_file={.*,.ssh,.*profile*}
hide_file={.*,.ssh,.*profile*}
check_shell=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
listen=YES
ftpd_banner=Our FTPd Server
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
syslog_enable=YES
chmod_enable=NO
secure_chroot_dir=/usr/share/empty

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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread nate
Les Mikesell wrote:
> nate wrote:
>
>>
>> Last I checked as well the SNMP daemon didn't return cpu i/o
>> wait values, which is pretty handy to have.
>
> It must... I haven't waded through the details of how it does it, but a
> default OpenNMS install will collect and graph a CPU usage chart that
> stacks user/nice/wait/system/interrupts and seems accurate except that
> it is per-cpu (i.e. will go to 400% on a hyperthreaded dual-cpu box).

Strange since the FAQ for snmpd specifically says per-cpu
stats are not accurate.

What about multi-processor systems?
--

Sorry - the CPU statistics (both original percentages, and the
  newer raw statistics) both refer to the system as a whole.  There
  is currently no way to access individual statistics for a particular
  processor (except on Solaris systems - see below).

Note that although the Host Resources table includes a hrProcessorTable,
  the current implementation suffers from two major flaws.  Firstly, it
  doesn't currently recognise the presence of multiple processors, and
  simply assumes that all systems have precisely one CPU.  Secondly, it
  doesn't calculate the hrProcessorLoad value correctly, and either returns
  a dummy value (based on the load average) or nothing at all.

As of net-snmp version 5.1, the Solaris operating system delivers some
  information about multiple CPU's such as speed and type.

Other than that, to monitor a multi-processor system, you're currently
  out of luck.  We hope to address this in a future release of the agent.
  But you've got the source, so you can always have a go yourself :-)

---

I'm not aware of any other tool that reports stats on a per-CPU
basis(e.g. sar, vmstat, etc) on a 2.6.x kernel, though per-cpu
stats were available in older 2.4.x kernels with SAR at least,
though I've always only been interested in cpu usage as a whole
rather than per-cpu stats. My main cacti server has 2555 graphs
as it is.

I have too many hundreds of hours invested in cacti right now
to make the jump to anything else at the moment..but perhaps
some day I will jump ship and use something else, or go back
to writing my own, which I used to do in order to get higher
resolution monitoring several years ago(e.g. 10,30,60 second
intervals). My cacti collects about 11 million data points a day
today with room on the hardware to probably go to 25 million
before needing a 2nd server(dual proc quad core 16GB).

nate

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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Les Mikesell

nate wrote:



Last I checked as well the SNMP daemon didn't return cpu i/o
wait values, which is pretty handy to have.


It must... I haven't waded through the details of how it does it, but a 
default OpenNMS install will collect and graph a CPU usage chart that 
stacks user/nice/wait/system/interrupts and seems accurate except that 
it is per-cpu (i.e. will go to 400% on a hyperthreaded dual-cpu box).


It also does a CPU statistics chart that does a line graph for the 
1/5/15 minute values with the space under the line color-coded for %cpu 
utilization.



Then I have a script that queries the data(along with other
data) and feeds it into cacti as a single set of results
(to be stored in 1 RRD file) which really helps cacti scale

[EMAIL PROTECTED]:~/bin]$ ./linux-basics-net.pl us-cfe002 public
USER:0.01 NICE:0.00 SYS:0.02 IO:0.00 FAULT:61.78 TCPSOCK:21 RAM_T:3950
RAM_F:2732 RAM_B:58 RAM_C:731 SWAP_T:8189 SWAP_U:0 DISK_T:60707 DISK_U:9567
1MIN:0.00 5MIN:0.00 15MIN:0.00 E0_IN:747203652 E0_OUT:520021358 E1_IN:0
E1_OUT:0


And it does  a system memory stats graph with color-coded:
used/io_buff/shared/filesytem cache/available/swap/real values.


Unfortunately with every passing revision of sar it becomes
more and more difficult to parse, I really miss the version
from RHEL 3 days, that one was great, it had a special
human readable output option which has since been taken out
(it would spit out each stat on one line making it easy
to parse).


You might want to look at opennms if you haven't already.  Now that they 
have a yum repo it is very easy to install.


--
  Les Mikesell
   [EMAIL PROTECTED]
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Ivan Levchenko
so has anybody had any good exp. with zenoss? I fired it up once for a
couple of hours, tried to get the disk usage info using it, but
failed. didn't have that much time to get into it, just used cacti
instead.. but i would love to get some more functionality out of it,
like auto discovery (the plugin for cacti doesn't do anything useful)
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread nate
Les Mikesell wrote:

> Can you be more specific about how snmp is wrong and what you do to get
> a more accurate value?   Is it just that the snmp value needs to be
> scaled by the number of processors?

Seems like the SNMPD included in CentOS 5.x has improved somewhat
vs v4.

>From the FAQ

What do the CPU statistics mean - is this the load average?
--

  No.  Unfortunately, the original definition of the various CPU statistics
  was a little vague.  It referred to a "percentage", without specifying
  what period this should be calculated over.  It was therefore
  implemented slightly differently on different architectures.

Recent releases includes "raw counters", which can be used to
  calculate the percentage usage over any desired period.  This is
  the "right" way to handle things in the SNMP model.  The original
  flawed percentage objects should not be used, and will be removed
  in a future release of the agent.

Note that this is different from the Unix load average, which is
  available via the loadTable, and is supported on all architectures.

---

Older versions would basically spit out random values for CPU
usage. For about the past 5 years I have used scripts that run
out of cron, that run sar and parse the output and send the
results to a file, then configure SNMP to tail that file when
a particular OID is queried. This has given me really dependable
results over the years.

[EMAIL PROTECTED]:/home/monitor/stats]# tail -n 1 *
==> disk.usage <==
DISK_T:60707 DISK_U:9567

==> mem.usage <==
RAM_T:3950 RAM_F:2732 RAM_B:58 RAM_C:731 SWAP_T:8189 SWAP_U:0

==> sar.usage <==
USER:0.01 NICE:0.00 SYS:0.01 IO:0.00 FAULT:41.16 TCPSOCK:21

Last I checked as well the SNMP daemon didn't return cpu i/o
wait values, which is pretty handy to have.

Then I have a script that queries the data(along with other
data) and feeds it into cacti as a single set of results
(to be stored in 1 RRD file) which really helps cacti scale

[EMAIL PROTECTED]:~/bin]$ ./linux-basics-net.pl us-cfe002 public
USER:0.01 NICE:0.00 SYS:0.02 IO:0.00 FAULT:61.78 TCPSOCK:21 RAM_T:3950
RAM_F:2732 RAM_B:58 RAM_C:731 SWAP_T:8189 SWAP_U:0 DISK_T:60707 DISK_U:9567
1MIN:0.00 5MIN:0.00 15MIN:0.00 E0_IN:747203652 E0_OUT:520021358 E1_IN:0
E1_OUT:0

Unfortunately with every passing revision of sar it becomes
more and more difficult to parse, I really miss the version
from RHEL 3 days, that one was great, it had a special
human readable output option which has since been taken out
(it would spit out each stat on one line making it easy
to parse).

nate

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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Les Mikesell

nate wrote:

Ivan Levchenko wrote:


exactly the way i'm thinking about it. this gives you the option to
switch between any monitoring tool that properly supports snmp and  i
will not have to change anything on the client side. plus, as far as i
know, snmp gives disk usage info, and, afaik, also running processes.
for now, that's enough for me.


Just remember that at least on linux, the cpu usage information
presented by SNMPD is wildly inaccurate, so don't rely on it for
that particular stat. I wrote my own little scripts to feed into
snmpd to get cpu usage and associated templates etc for cacti.


Can you be more specific about how snmp is wrong and what you do to get 
a more accurate value?   Is it just that the snmp value needs to be 
scaled by the number of processors?


--
  Les Mikesell
   [EMAIL PROTECTED]
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread nate
Ivan Levchenko wrote:

> exactly the way i'm thinking about it. this gives you the option to
> switch between any monitoring tool that properly supports snmp and  i
> will not have to change anything on the client side. plus, as far as i
> know, snmp gives disk usage info, and, afaik, also running processes.
> for now, that's enough for me.

Just remember that at least on linux, the cpu usage information
presented by SNMPD is wildly inaccurate, so don't rely on it for
that particular stat. I wrote my own little scripts to feed into
snmpd to get cpu usage and associated templates etc for cacti.

nate

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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Ivan Levchenko
On Mon, Oct 13, 2008 at 11:15 PM, Les Mikesell <[EMAIL PROTECTED]> wrote:
> John R Pierce wrote:
>>
 well, SNMP isn't going to tell you much about the state of a webserver
 or databbase statistics or whatever, its mostly just network
 information.

>>>
>>> It can tell you just about anything depending on how you
>>> configure it, SNMP is just a protocol. I get DB stats, system
>>> stats etc from SNMPD by hooking in custom OIDs to external
>>> scripts/files.
>>>
>>
>> and thats different than configuring remote agents ?
>
> Remote agents for anything but snmp protocol tend to be specific for a
> particular monitoring tool and often available for only one or a limited
> number of platforms.  Snmp is built into most network-capable devices.

exactly the way i'm thinking about it. this gives you the option to
switch between any monitoring tool that properly supports snmp and  i
will not have to change anything on the client side. plus, as far as i
know, snmp gives disk usage info, and, afaik, also running processes.
for now, that's enough for me.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Les Mikesell

John R Pierce wrote:



well, SNMP isn't going to tell you much about the state of a webserver
or databbase statistics or whatever, its mostly just network 
information.



It can tell you just about anything depending on how you
configure it, SNMP is just a protocol. I get DB stats, system
stats etc from SNMPD by hooking in custom OIDs to external
scripts/files.
  


and thats different than configuring remote agents ?


Remote agents for anything but snmp protocol tend to be specific for a 
particular monitoring tool and often available for only one or a limited 
number of platforms.  Snmp is built into most network-capable devices.


--
 Les Mikesell
   [EMAIL PROTECTED]
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread John R Pierce

nate wrote:

John R Pierce wrote:

  

well, SNMP isn't going to tell you much about the state of a webserver
or databbase statistics or whatever, its mostly just network information.



It can tell you just about anything depending on how you
configure it, SNMP is just a protocol. I get DB stats, system
stats etc from SNMPD by hooking in custom OIDs to external
scripts/files.
  


and thats different than configuring remote agents ?


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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread nate
John R Pierce wrote:

> well, SNMP isn't going to tell you much about the state of a webserver
> or databbase statistics or whatever, its mostly just network information.

It can tell you just about anything depending on how you
configure it, SNMP is just a protocol. I get DB stats, system
stats etc from SNMPD by hooking in custom OIDs to external
scripts/files.

nate

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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread John R Pierce

Ivan Levchenko wrote:

True, but i'm not into installing agents.. just lazy about it
probably.. i know that snmp supports everything that I need, and I
just do not want to install something that requires an agent, when it
can be done without it...
  


well, SNMP isn't going to tell you much about the state of a webserver 
or databbase statistics or whatever, its mostly just network information.



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


Re: [CentOS] my postfix ignores myhostname parameter

2008-10-13 Thread mouss
David Hláčik a écrit :
> Hello guys,
>  
> I do not know how it is posible :
>  
> *vi /etc/postfix/main.cf *
>  
>  
> # INTERNET HOST AND DOMAIN NAMES
> #
> # The myhostname parameter specifies the internet hostname of this
> # mail system. The default is to use the fully-qualified domain name
> # from gethostname(). $myhostname is used as a default value for many
> # other configuration parameters.
> #
> #myhostname = host.domain.tld
> myhostname = mail.hlacik.eu
>  
> *service postfix restart*
>  

I know you're testing. but once you get a "stable" config, restart is
often unnecessary. in most cases a 'postfix reload' is enough (and even
that isn't necessary in general, as most postfix services are relatively
short lived and will reread the conf at some time). of course, if you
change an IP:port, ..., you need to restart.

> [EMAIL PROTECTED] postfix]# postconf -d myhostname
> *myhostname = sx1.labs.hlacik.eu*
>  

the 'd' in "-d" stands for "default". Use

# postconf myhostname
or
# postconf -n myhostname
or
# postconf -h myhostname

instead.

>  
> What is wrong??

nothing, except that you forgot to RTFM ;-p




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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Ivan Levchenko
On Mon, Oct 13, 2008 at 9:21 PM, John R Pierce <[EMAIL PROTECTED]> wrote:
> Ivan Levchenko wrote:
>>
>> I'm already using cacti, but its not very usable, especially the
>> notifications (or lack of them) and either i didn't find a way, or
>> cacti cannot monitor services (http, smtp, others)
>>
>
> Nagios is for alerts and notifications, Cacti is for graphing trends.
>  While either can be forced into the other role, each is best at it does
> natively.

True, but i'm not into installing agents.. just lazy about it
probably.. i know that snmp supports everything that I need, and I
just do not want to install something that requires an agent, when it
can be done without it...
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread John R Pierce

Ivan Levchenko wrote:

I'm already using cacti, but its not very usable, especially the
notifications (or lack of them) and either i didn't find a way, or
cacti cannot monitor services (http, smtp, others)
  


Nagios is for alerts and notifications, Cacti is for graphing trends.
While either can be forced into the other role, each is best at it does 
natively.





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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Ivan Levchenko
On Mon, Oct 13, 2008 at 8:12 PM, Kenneth Price <[EMAIL PROTECTED]> wrote:
>
>>i'm  looking for something that is agent-less and not java ( i want to
>>keep it relatively light weight). anything else out there?
>
> I haven't been keeping up with this thread, so I apologize for repeating any 
> other suggestions, but have you looked at:
>
> 1) Cacti (http://www.cacti.net/)
> 2) Centreon (http://www.centreon.com/)
>
> Cacti has plenty of 3rd party plugins if you want, or just use SNMP in it's 
> default form.  And Centreon, like Nagios, doesn't require you to use agents 
> if you don't want.
>
> Regards,
> Kenneth Price
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>

I'm already using cacti, but its not very usable, especially the
notifications (or lack of them) and either i didn't find a way, or
cacti cannot monitor services (http, smtp, others)

--

Best Regards,

Ivan Levchenko
[EMAIL PROTECTED]
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] my postfix ignores myhostname parameter

2008-10-13 Thread Ralph Angenendt
David Hláčik wrote:
> [EMAIL PROTECTED] postfix]# postconf -d myhostname
> *myhostname = sx1.labs.hlacik.eu*
> 
> 
> What is wrong??

postconf -d does not do what you think it does. I guess the machine is called
sx1.labs.hlacik.eu.

Try postconf -n myhostname

Cheers,

Ralph

pgpqALJim1Pgh.pgp
Description: PGP signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] my postfix ignores myhostname parameter

2008-10-13 Thread Kai Schaetzl
David Hláèik wrote on Mon, 13 Oct 2008 18:17:57 +0200:

> *myhostname = sx1.labs.hlacik.eu*

Is that the name a gethostname() would show? (a gethostname would either 
return the same as the hostname command or a host command on the IP, I 
think). Then it makes sense.
mail.hlacik.eu points to another machine. You do not want to send out any 
mail from your machine with a name that is pointing somewhere else.

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



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


Re: [CentOS] CentOS 5 x86_64 install does not see SATA drives

2008-10-13 Thread Rick Barnes

Dougal Ballantyne wrote:

I am having some problems installing CentOS 5.2 x86_64 onto a
Supermicro 6015V-T with Intel 5000V chipset and ESB2 controller using
SATA drives. Currently I am running CentOS 4.7 i386 and it sees both
drives but when I boot into the CentOS 5 install CD it fails to see
the drives. Does anybody have any tips for getting the drives visible?


I have a SuperMicro 6015P-TR that I just installed CentOS 5.2 x84_64. I 
struggled for 2 days trying to get the HostRAID RAID 1 working. I was 
only able to get 5.1 to install but not 5.2 (supermicro only has 5.1 
drivers on its site). After the install, the server saw each drive 
individually sda, sdb rather than as one device and quit working after 
installing updates to the latest kernel.


I googled around for answers and there was very little useful 
information available in getting this to work.


In the end, I just bought a 3ware 9650SE-4LPML after hearing good things 
about these cards on this list, installed it one of the PCI-Express 
slots, pulled the cable to the drive backplane on the mobo and plugged 
in right into the card and installed C5.2. Worked like a charm.


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


Re: [CentOS] Please Update Extras Repo?!

2008-10-13 Thread Karanbir Singh

Kenneth Price wrote:

Is there any reason the "extras" repo hasn't been updated in a while?  Modules 
like kmod-xfs and kmod-drbd/kmod-drbd82 are frequently used and haven't been updated for 
the latest kernel.  Powerdns is two months behind the critical security update to 
2.9.21.1.

the kmod's issue has been discussed a few times, and pkgs are available 
that address the issue, pending feedback move from testing. Nothing 
stops you from helping that testing effort to get the move done quicker.


w.r.t the pdns issue, do you want to go ahead and open an issue report 
on bugs.centos.org/ and include the update spec patch ? Assign that to 
me, and I'll work on getting it pushed out.


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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Kenneth Price

>i'm  looking for something that is agent-less and not java ( i want to
>keep it relatively light weight). anything else out there?

I haven't been keeping up with this thread, so I apologize for repeating any 
other suggestions, but have you looked at:

1) Cacti (http://www.cacti.net/)
2) Centreon (http://www.centreon.com/)

Cacti has plenty of 3rd party plugins if you want, or just use SNMP in it's 
default form.  And Centreon, like Nagios, doesn't require you to use agents if 
you don't want.

Regards,
Kenneth Price
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Please Update Extras Repo?!

2008-10-13 Thread Kenneth Price
Is there any reason the "extras" repo hasn't been updated in a while?  Modules 
like kmod-xfs and kmod-drbd/kmod-drbd82 are frequently used and haven't been 
updated for the latest kernel.  Powerdns is two months behind the critical 
security update to 2.9.21.1.

If you're going to provide the extras repo as a default CentOS repository, then 
it MUST be given the same attention as the "updates" repo.

Please update ASAP.

Thank you,
Kenneth Price
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] my postfix ignores myhostname parameter

2008-10-13 Thread Robert Moskowitz

David Hláčik wrote:

Hello guys,
I do not know how it is posible :
*vi /etc/postfix/main.cf *
# INTERNET HOST AND DOMAIN NAMES
#
# The myhostname parameter specifies the internet hostname of this
# mail system. The default is to use the fully-qualified domain name
# from gethostname(). $myhostname is used as a default value for many
# other configuration parameters.
#
#myhostname = host.domain.tld
myhostname = mail.hlacik.eu
*service postfix restart*
[EMAIL PROTECTED] postfix]# postconf -d myhostname
*myhostname = sx1.labs.hlacik.eu*
What is wrong??


What is in:

/etc/hosts
/etc/sysconfig/network
/etc/sysconfig/network-scripts/ifcfg-ethn (where n is the interface number)

???


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


Re: [CentOS] Re: [OT] What is the best network monitoring tool?

2008-10-13 Thread Ivan Levchenko
Has anybody tried zenoss? is it worth working with?

i'm  looking for something that is agent-less and not java ( i want to
keep it relatively light weight). anything else out there?
--

Best Regards,

Ivan Levchenko
[EMAIL PROTECTED]
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] my postfix ignores myhostname parameter

2008-10-13 Thread David Hláčik
Hello guys,

I do not know how it is posible :

*vi /etc/postfix/main.cf*

# INTERNET HOST AND DOMAIN NAMES
#
# The myhostname parameter specifies the internet hostname of this
# mail system. The default is to use the fully-qualified domain name
# from gethostname(). $myhostname is used as a default value for many
# other configuration parameters.
#
#myhostname = host.domain.tld
myhostname = mail.hlacik.eu

*service postfix restart*

[EMAIL PROTECTED] postfix]# postconf -d myhostname
*myhostname = sx1.labs.hlacik.eu*


What is wrong??

I have Centos5.2 with latest updates.

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


Re: [CentOS] Perl CGI scripts - stripping out unwanted carriage returns etc

2008-10-13 Thread nate
Andrew Allen wrote:

> returns which have somehow got into the perl text files. Is there a
> quick and easy way (ie piece of software) to strip out these things, or
> do I have to do it manually?

dos2unix


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


[CentOS] Perl CGI scripts - stripping out unwanted carriage returns etc

2008-10-13 Thread Andrew Allen
I have a number of perl CGI scripts which I wrote some time ago (and
which are working successfully on my website). I've set up a local
server on which to do some development work on the scripts but I can't
get them to work - the error log says:
No such file or directory: exec of '/var/www/cgi-bin/script.cgi' failed
Premature end of script headers: script.cgi etc

By comparing two identical very simple cgi scripts (one works, the other
doesn't), I've traced the problem to, apparently, unwanted carriage
returns which have somehow got into the perl text files. Is there a
quick and easy way (ie piece of software) to strip out these things, or
do I have to do it manually?
Thanks for any help,
Andy


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


RE: [CentOS] problem with dns

2008-10-13 Thread RobertH
 

 


yes i already installed bind but when i want to configurate i don't find the
file or the right file


  


  

 

 

 

Try this

 

cd /etc

ls -axl named.conf

 

if you do not see it or a symlink to where it really is, then do what the
others suggested and try the find command or samples area

 

when you install bind and chroot bind stuff it would go here

 

cd /var/named

 

then

 

ls -axl

 

and look around chroot dir etc

 

 - rh

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


Re: [CentOS] kmod-drbd82.x86_64 for kernel-2.6.18-92.1.13 is missing?

2008-10-13 Thread Akemi Yagi
On Mon, Oct 13, 2008 at 8:27 AM, Rainer Traut <[EMAIL PROTECTED]> wrote:
> Akemi Yagi schrieb:
>>
>> On Mon, Oct 13, 2008 at 5:22 AM, Rainer Traut <[EMAIL PROTECTED]> wrote:
>>
>> I wonder if you will be able to help with *testing* the kmod-drbd82 ?
>
> Sure I can test. NP. Are there packages to test?
>
> Rainer

Yes, here.

http://people.centos.org/hughesjr/kernel/5/plus/2.6.18-92.1.13.el5.centos.plus/

Please report back with what you find (success, failure, anything)

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


Re: [CentOS] kmod-drbd82.x86_64 for kernel-2.6.18-92.1.13 is missing?

2008-10-13 Thread Rainer Traut

Akemi Yagi schrieb:

On Mon, Oct 13, 2008 at 5:22 AM, Rainer Traut <[EMAIL PROTECTED]> wrote:

it seems this module is missing from the extras repo?



kernel-2.6.18-92.1.13.el5.x86_64.rpm25-Sep-2008 16:40
and
...

Any problems with it?


Quoting Ralph's line from the #centos channel:

"Because we're working on kmods which will use weak-updates so that
those don't have to be rebuilt every time a new kernel comes out. This
takes a little bit longer than anticipated."

I wonder if you will be able to help with *testing* the kmod-drbd82 ?


Sure I can test. NP. Are there packages to test?

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


Re: [CentOS] Yum and case-sensitivity

2008-10-13 Thread Kai Schaetzl
look at this thread "rpmforge, perl-dbd-mysql, yum, priorities, centos, 
and you" started Oct. 8.

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



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


Re: [CentOS] kmod-drbd82.x86_64 for kernel-2.6.18-92.1.13 is missing?

2008-10-13 Thread Akemi Yagi
On Mon, Oct 13, 2008 at 5:22 AM, Rainer Traut <[EMAIL PROTECTED]> wrote:
> Hi,
>
> it seems this module is missing from the extras repo?

> kernel-2.6.18-92.1.13.el5.x86_64.rpm25-Sep-2008 16:40
> and
> ...
>
> Any problems with it?

Quoting Ralph's line from the #centos channel:

"Because we're working on kmods which will use weak-updates so that
those don't have to be rebuilt every time a new kernel comes out. This
takes a little bit longer than anticipated."

I wonder if you will be able to help with *testing* the kmod-drbd82 ?

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


Re: [CentOS] problem with dns

2008-10-13 Thread Joost Waversveld

david fritz wrote:
yes i already installed bind but when i want to configurate i don't find 
the file or the right file


--- En date de : *Lun 13.10.08, Pintér Tibor /<[EMAIL PROTECTED]>/* a écrit :

De: Pintér Tibor <[EMAIL PROTECTED]>
Objet: Re: [CentOS] problem with dns
À: "CentOS mailing list" 
Date: Lundi 13 Octobre 2008, 16h37

david fritz wrote:
> i want to configure dns but i don't find the file like named.conf


dns server you mean?
you need the "bind" rpm installed.

if you need dns "client", edit /etc/resolv.conf

t
___
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


find / -name 'named.conf'
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] problem with dns

2008-10-13 Thread Ralph Angenendt
david fritz wrote:
> i want to configure dns but i don't find the rightfile like named.conf

/usr/share/doc/bind-9.3.4/sample/

Ralph


pgpCHN8LbSAXo.pgp
Description: PGP signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] "EDAC i5000 MC0: FATAL ERRORS Found!!!" error message?

2008-10-13 Thread Tim Verhoeven
On Mon, Oct 13, 2008 at 3:38 PM, Jeff <[EMAIL PROTECTED]> wrote:
>
> We had the following error thrown on console on a PowerEdge server running
> CentOS 5 (64 bit). Googling around didn't yield any particular insights. The
> server crashed a few minutes after this message. Running memtester, just to
> check, didn't find anything; and the box has been running for months before
> this without issue.
> I'm wondering if anyone has run across this before, and if so, if it was
> software (CentOS) or hardware (PowerEdge / PowerVault) related?
> Oct  8 12:19:35 someServer kernel: EDAC i5000 MC0: FATAL ERRORS Found!!! 1st
> FATAL Err Reg= 0x4
> Oct  8 12:19:35 someServer kernel: EDAC i5000 MC0: >Tmid Thermal event with
> intelligent throttling disabled
> Oct  8 12:19:35 someServer kernel: EDAC MC0: UE row 1, channel-a= 2
> channel-b= 3 labels "-": (Branch=1 DRAM-Bank=0 RDWR=Write RAS=11802 CAS=0
> FATAL Err=0x4)

IIRC the EDAC i5000 is the memory controller of the server, and it
looks like something went wrong with a DIMM and that is probably why
it crashed. So it looks like you may have a (intermittent) hardware
issue.

Regards,
Tim

-- 
Tim Verhoeven - [EMAIL PROTECTED] - 0479 / 88 11 83

Hoping the problem  magically goes away  by ignoring it is the
"microsoft approach to programming" and should never be allowed.
(Linus Torvalds)
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Yum and case-sensitivity

2008-10-13 Thread Jeff


Hi List,

On one of our servers (CentOS 4 32 bit), we have the dag repo enabled.  
Yesterday morning during a yum update, yum replaced the CentOS package  
"perl-DBD-MySQL" with one from dag, "perl-DBD-mysql".


For whatever reason, the two packages differ, in that only one of them  
(the CentOS built one) includes:

/usr/lib/perl5/vendor_perl/5.8.5/i386-linux-thread-multi/Mysql.pm
	/usr/lib/perl5/vendor_perl/5.8.5/i386-linux-thread-multi/Mysql/ 
Statement.pm


I've excluded the dag version in our yum.conf so it won't re-apply it  
and break perl code that has "use Mysql;", but I'm confused as to why  
yum saw fit to replace the package, and, why it did so yesterday.  
(This box has not had any packages added or removed, outside the  
standard 'yum update', for many months; and the only repo other than  
CentOS-managed ones it he dag one.)


Bug? Expected behavior?
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] problem with dns

2008-10-13 Thread david fritz
yes i already installed bind but when i want to configurate i don't find the 
file or the right file

--- En date de : Lun 13.10.08, Pintér Tibor <[EMAIL PROTECTED]> a écrit :
De: Pintér Tibor <[EMAIL PROTECTED]>
Objet: Re: [CentOS] problem with dns
À: "CentOS mailing list" 
Date: Lundi 13 Octobre 2008, 16h37

david fritz wrote:
> i want to configure dns but i don't find the file like named.conf


dns server you mean?
you need the "bind" rpm installed.

if you need dns "client", edit /etc/resolv.conf

t
___
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


[CentOS] "EDAC i5000 MC0: FATAL ERRORS Found!!!" error message?

2008-10-13 Thread Jeff


Hi List,

We had the following error thrown on console on a PowerEdge server  
running CentOS 5 (64 bit). Googling around didn't yield any particular  
insights. The server crashed a few minutes after this message. Running  
memtester, just to check, didn't find anything; and the box has been  
running for months before this without issue.


I'm wondering if anyone has run across this before, and if so, if it  
was software (CentOS) or hardware (PowerEdge / PowerVault) related?


Oct  8 12:19:35 someServer kernel: EDAC i5000 MC0: FATAL ERRORS  
Found!!! 1st FATAL Err Reg= 0x4
Oct  8 12:19:35 someServer kernel: EDAC i5000 MC0: >Tmid Thermal event  
with intelligent throttling disabled
Oct  8 12:19:35 someServer kernel: EDAC MC0: UE row 1, channel-a= 2  
channel-b= 3 labels "-": (Branch=1 DRAM-Bank=0 RDWR=Write RAS=11802  
CAS=0 FATAL Err=0x4)


Thanks!


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


Re: [CentOS] problem with dns

2008-10-13 Thread Pintér Tibor

david fritz wrote:

i want to configure dns but i don't find the file like named.conf



dns server you mean?
you need the "bind" rpm installed.

if you need dns "client", edit /etc/resolv.conf

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


[CentOS] problem with dns

2008-10-13 Thread david fritz
i want to configure dns but i don't find the rightfile like named.conf


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


[CentOS] problem with dns

2008-10-13 Thread david fritz
i want to configure dns but i don't find the file like named.conf


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


Re: [CentOS] Weird problem in PHP 5.1.6/possible bug

2008-10-13 Thread Kai Schaetzl
Patrick wrote on Sun, 12 Oct 2008 15:34:03 -0400:

> See above (hope it helps out).

As you might have seen I actually found a workaround. Your findings on 
CentOS 4 suggest that it is a specific problem on the CentOS/RHEL 5 
platform. The PHP 5 coming with CentOS 5 is set to a locale of C and 
doesn't match the locale of the system! I guess I file a bug now. Thanks!

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



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


Re: [CentOS] problem with roundcubemail

2008-10-13 Thread Pintér Tibor

david fritz wrote:
 I use the webmail roundcubemail to edit my mail server. after finishing 
to configure it and mysql server and I try  to connect  to the mail 
server but i had this message :


   unable to connect to the database.

  help me please 


pretty informative error msg.

can you read and understand it at all?

double-check mysql host/user/pass/db

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



Re: [CentOS] /var/amavis

2008-10-13 Thread Ned Slider

Jussi Hirvi wrote:

Hello all,

My /etc/group is not quite in order (a long story), and now I need to 
correct privileges right here and there.


I would ask someone who has amavisd-new to show me the corresponding 
listing as this:


[EMAIL PROTECTED] amavis]# ls -l /var/amavis
total 20
-rw-r- 1 amavis  5000 Oct 13 15:05 amavisd.lock
-rw-r--r-- 1 amavis mail5 Oct 13 11:06 amavisd-milter.pid
srwxr-xr-x 1 amavis mail0 Oct 13 11:06 amavisd-milter.sock
-rw-r- 1 amavis mail5 Oct 13 14:58 amavisd.pid
srwxr-x--- 1 amavis mail0 Oct 13 14:58 amavisd.sock
drwxr-x--- 2 amavis  500 4096 Oct 13 14:58 db
drwxr-xr-x 4 amavis mail 4096 Oct 13 15:10 tmp
drwxr-x--- 2 amavis  500 4096 Mar 13  2008 var

Especially I'm not sure anymore about what that group id 500 should be.

Thanks in advance,
Jussi



$ ls -l /var/amavis/
total 28
srwxr-x--- 1 amavis amavis0 Oct 13 11:17 amavisd.sock
drwxr-x--- 2 amavis amavis 4096 Oct 13 11:17 db
drwxr-x--- 7 amavis amavis 4096 Oct 13 13:03 tmp
drwxr-x--- 3 amavis amavis 4096 Oct 13 11:17 var

Group ID 500 is normally the first regular user account on the system. 
Looks like you've made the amavis user's primary group to be your's (or 
whoever the user group ID 500 is).


I'm not quite sure why your amavis user appears to be in the mail group 
- perhaps you have amavisd-new set up differently to me. Mine is set up 
according to the guide on the Wiki:


http://wiki.centos.org/HowTos/Amavisd

Hope that helps


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


[CentOS] problem with roundcubemail

2008-10-13 Thread david fritz
 I use the webmail roundcubemail to edit my mail server. after finishing to 
configure it and mysql server and I try  to connect  to the mail server but i 
had this message :   unable to connect to the database.  help me please 


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


[CentOS] kmod-drbd82.x86_64 for kernel-2.6.18-92.1.13 is missing?

2008-10-13 Thread Rainer Traut

Hi,

it seems this module is missing from the extras repo?

kernel-2.6.18-92.1.10.el5.x86_64.rpm06-Aug-2008 08:30
and one day later
kmod-drbd82-8.2.6-1.2.6.18_92.1.10.el5.x86_64.rpm   07-Aug-2008 22:54

kernel-2.6.18-92.1.13.el5.x86_64.rpm25-Sep-2008 16:40
and
...

Any problems with it?


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


[CentOS] /var/amavis

2008-10-13 Thread Jussi Hirvi

Hello all,

My /etc/group is not quite in order (a long story), and now I need to 
correct privileges right here and there.


I would ask someone who has amavisd-new to show me the corresponding 
listing as this:


[EMAIL PROTECTED] amavis]# ls -l /var/amavis
total 20
-rw-r- 1 amavis  5000 Oct 13 15:05 amavisd.lock
-rw-r--r-- 1 amavis mail5 Oct 13 11:06 amavisd-milter.pid
srwxr-xr-x 1 amavis mail0 Oct 13 11:06 amavisd-milter.sock
-rw-r- 1 amavis mail5 Oct 13 14:58 amavisd.pid
srwxr-x--- 1 amavis mail0 Oct 13 14:58 amavisd.sock
drwxr-x--- 2 amavis  500 4096 Oct 13 14:58 db
drwxr-xr-x 4 amavis mail 4096 Oct 13 15:10 tmp
drwxr-x--- 2 amavis  500 4096 Mar 13  2008 var

Especially I'm not sure anymore about what that group id 500 should be.

Thanks in advance,
Jussi

--
--
Jussi Hirvi * Green Spot
Topeliuksenkatu 15 C * 00250 Helsinki * Puh. & fax 09-493 981
Matkapuh. 040-771 2098 (vain tekstiviestit)
[EMAIL PROTECTED] * http://www.greenspot.fi
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] NameVirtualHost and CGI Problems

2008-10-13 Thread Kai Schaetzl
Michael Peterson wrote on Sun, 12 Oct 2008 22:24:09 -0500:

> I did not guess.

When you replied the first time, you *did* guess. It is quite obvious that 
you do not need to remove what you suggested.

> I have been working with Apache for over 8 years

I can top that easily. So, what?

> After such a blatant insult I should think about dropping this list.

Then please do. I didn't insult you in any way. It's you who's suddenly 
begun to flame. I haven't seen such a reaction for a long time on this 
list.

> In your first sentence you say "You can do that, it depends on your 
> configuration. ".

Then please read what I wrote in that sentence instead of flaming. You 
cannot just say "I do not use it" and present this as the solution. It 
depends on the configuration and for almost all configurations it will not 
work! Especially not for the one Mike is using.

> This example is straight from the documentation listed above.

Yeah. And, amazingly, wow, it has ServerName in it. Something that you 
suggested to omit. And it's got the port as well, something else you 
suggested to omit. Hm. Should I follow the documentation or should I follow 
your advice?

> There is no ServerAlias for the second VirtualHost entry.

I suggest you read again what I wrote instead of flaming. Maybe then you 
understand what I wrote. I figure that you may have confused ServerName and 
ServerAlias. Maybe you meant to say "I run a Virtual Host entry without a 
*ServerAlias* directive". Just that we weren't talking about ServerAlias. 
Even if we had, that's not an excuse for such a flame.

> I hope this solves the NameVIrtualHost issue for the time being at least.

It definitely does not as you are confusing people as best as you can with 
your writings.

> I only use ServerName and have not tried ServerAlias.

You didn't ever use that in "over 8 years" of experience with Apache? Don't 
answer, this was a rhetorical question.

No, I won't answer any more of your flames.

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



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


Re: [CentOS] Question about Mirrors

2008-10-13 Thread Ralph Angenendt
Bo Lynch wrote:
> Ralph,
> So if I have a 5.1 client then where should I point yum to look for updates?

You point base *and* updates to

http://mirror.example.com/centos/$releasever/{os,updates}/$basearch

That way you'll go to 5.2 with the next "yum update". 

Remember: There is *NO* 5.0 anymore, there is *NO* 5.1 anymore, it is
CentOS5 with the current set being at point release 5.2. And then 5.3,
5.4, 5.5 - it is all CentOS 5.

Ralph


pgphV08fxsbBa.pgp
Description: PGP signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Good [L]AMP tutorial for CentOS 5.2 ?

2008-10-13 Thread Sorin Srbu
Ralph Angenendt <> scribbled on Saturday, October 11, 2008 2:16 PM:

> Rene Fournier wrote:
>> Being slightly familiar with BSD, I'm trying to get my feet wet with
>> Linux, and was wondering if anyone can suggest a good walkthrough of
>> setting up a CentOS server with Apache, PHP, and MySQL...

I recently discovered howtoforge.com. Great site I think. The below might be of 
interest for your specific case.

Quick 'n' Easy LAMP Server For CentOS/RHEL:
http://www.howtoforge.com/quick-n-easy-lamp-server-centos-rhel

The Perfect Server - CentOS 5.2 x86_64:
http://www.howtoforge.com/perfect-server-centos-5.2-x86_64

The Perfect Server - CentOS 5.2:
http://www.howtoforge.com/perfect-server-centos-5.2

HTH.

/S 


smime.p7s
Description: S/MIME cryptographic signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos