[CentOS-announce] CEBA-2013:1184 CentOS 6 sos Update

2013-08-29 Thread Karanbir Singh

CentOS Errata and Bugfix Advisory 2013:1184 

Upstream details at : https://rhn.redhat.com/errata/RHBA-2013-1184.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( sha256sum Filename ) 

i386:
5478bcfd187cdeefcf9612db2d04ff7669a97073bb1cc19bd98a11e8f3e67675  
sos-2.2-38.el6.centos.2.noarch.rpm

x86_64:
5478bcfd187cdeefcf9612db2d04ff7669a97073bb1cc19bd98a11e8f3e67675  
sos-2.2-38.el6.centos.2.noarch.rpm

Source:
6e7a7c39586dca00699822630b1d782f00334cf3d4ef544074e581f0df196123  
sos-2.2-38.el6.centos.2.src.rpm



-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net

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


Re: [CentOS-es] Consulta sobre permisos de programas instalado como root o usuario

2013-08-29 Thread Rodolfo Vargas
El 28/08/13, Luciano Andrés Chiarotto lachiaro...@gmail.com escribió:
 Hola Amigos.

 Tengo una duda sobre un problema de instalar los programas como root.

 Dos casos:
 

 1-Si el administrador instala un programa como root para que ese programa
 pueda ser usado por el resto de todos los usuarios, hay que hacer alguna
 configuración  para que tengan permisos y usar dicho programa ?

No, que yo sepa y lo veo a diario es que se instala una aplicación
digamos bluefish y todos los usuarios pueden usarlo, lo contrario no
se puede hacer, un usuario que no sea root no puede instalar
programas, debe ser root.


 2-Si el programa lo instala un usuario que no sea el root, como se debe
 configurar para que el resto de los usuarios tengan permisos y puedan usar
 dicho programa ?


Por seguridad y por defecto CentOS y muchos Linux no permiten eso por defecto.


 Tengo una respuesta pero me gustaría que me den una opinión al respecto.




 Desde ya muchas gracias.
 ___
 CentOS-es mailing list
 CentOS-es@centos.org
 http://lists.centos.org/mailman/listinfo/centos-es



-- 
Live free or die!
___
CentOS-es mailing list
CentOS-es@centos.org
http://lists.centos.org/mailman/listinfo/centos-es


Re: [CentOS] redirecting web requests from localhost

2013-08-29 Thread John Doe
From: Miguel González miguel_3_gonza...@yahoo.es

     I´m testing a server and try to simulate a server in production. We 
 have a SSL certificate and I have configured the test server with the 
 same servername as it is in production. To access it, I change the hosts 
 file in my laptop to reach the test server.
     However, the Java application running in the server tries to access 
 some local web content. I have changed the hosts file and some 
 applications (ping, wget) they get the local IP address. However 
 nslookup and maybe our Java application (I didn´t have the programmer 
 available to debug it) are getting the production server IP.

Or, if you have access to your DNS, you could add a view with 
match-clients for your IP and a dedicated file that would resolve to 
your local server IP.

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


Re: [CentOS] redirecting web requests from localhost

2013-08-29 Thread Carl T. Miller
Miguel González wrote:
 However, the Java application running in the server tries to access
 some local web content. I have changed the hosts file and some
 applications (ping, wget) they get the local IP address. However
 nslookup and maybe our Java application (I didn´t have the programmer
 available to debug it) are getting the production server IP.

 So, how can I redirect for instance 443 traffic to a specific IP to
 the local IP address of the local server? I have tried this:

  iptables -t nat -A PREROUTING -d XXX.XXX.XXX.XXX -p tcp --dport 80
 -j DNAT --to YYY.YYY.YYY.YYY

XXX.XXX.XXX.XXX - IP of production server

YYY.YYY.YYY.YYY - local IP of the test server


I'm not sure how to manage this on the test server, but
I'm pretty sure this would work on the prod server.

echo 1  /proc/sys/net/ipv4/ip_forward
iptables -t nat -A PREROUTING -p tcp --dport 443 -s YYY.YYY.YYY.YYY \
-m conntrack --ctstate NEW -j DNAT --to YYY.YYY.YYY.YYY:443
iptables -t nat -A PREROUTING -m conntrack --ctstate \
ESTABLISHED,RELATED -j ACCEPT
iptables -A POSTROUTING -t nat -j MASQUERADE

c


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


Re: [CentOS] redirecting web requests from localhost

2013-08-29 Thread Gary Hodder
On Wed, 2013-08-28 at 21:49 +0200, Miguel González wrote:
 Dear all,
 
 I´m testing a server and try to simulate a server in production. We 
 have a SSL certificate and I have configured the test server with the 
 same servername as it is in production. To access it, I change the hosts 
 file in my laptop to reach the test server.
 
 However, the Java application running in the server tries to access 
 some local web content. I have changed the hosts file and some 
 applications (ping, wget) they get the local IP address. However 
 nslookup and maybe our Java application (I didn´t have the programmer 
 available to debug it) are getting the production server IP.
 
 So, how can I redirect for instance 443 traffic to a specific IP to 
 the local IP address of the local server? I have tried this:
 
  iptables -t nat -A PREROUTING -d XXX.XXX.XXX.XXX -p tcp --dport 80 
 -j DNAT --to YYY.YYY.YYY.YYY
 
XXX.XXX.XXX.XXX - IP of production server
 
YYY.YYY.YYY.YYY - local IP of the test server
 
Thanks
 
Miguel

You have the prerouting but you have to forward it as well.
This allows a connection on the Internet to make a connection to a
internal machine on my local network.
Router machine's local network ip 10.0.0.1 on eth1.
10.0.0.5 internal machine. 

iptables -A FORWARD -p tcp -i ppp0 -o eth1 -d 10.0.0.5 --dport 1234 -j
ACCEPT
iptables -t nat -A PREROUTING -p tcp -i ppp0 --dport 1234 -j DNAT
--to-destination 10.0.0.5:1234

ip and ports changed to protect the guilty :)

Gary.


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


[CentOS] CentOS-announce Digest, Vol 102, Issue 16

2013-08-29 Thread centos-announce-request
Send CentOS-announce mailing list submissions to
centos-annou...@centos.org

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-requ...@centos.org

You can reach the person managing the list at
centos-announce-ow...@centos.org

When replying, please edit your Subject line so it is more specific
than Re: Contents of CentOS-announce digest...


Today's Topics:

   1. CEBA-2013:1179  CentOS 6 glibc Update (Karanbir Singh)
   2. CESA-2013:1173 Important CentOS 6 kernel Update (Karanbir Singh)
   3. CESA-2013:1182 Important CentOS 6 389-ds-base Update
  (Karanbir Singh)
   4. CEBA-2013:1184  CentOS 6 sos Update (Karanbir Singh)


--

Message: 1
Date: Wed, 28 Aug 2013 19:01:30 +
From: Karanbir Singh kbsi...@centos.org
Subject: [CentOS-announce] CEBA-2013:1179  CentOS 6 glibc Update
To: centos-annou...@centos.org
Message-ID: 20130828190130.ga39...@n04.lon1.karan.org
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Bugfix Advisory 2013:1179 

Upstream details at : https://rhn.redhat.com/errata/RHBA-2013-1179.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( sha256sum Filename ) 

i386:
4c14dd60cada88633694c3f1c605ad59f4d6c05fad3d13d4ecdb6ef1d94c3e3f  
glibc-2.12-1.107.el6_4.4.i686.rpm
0474826d2bcecbb57b712f7831012c2e6695c8c2d200eb5f41b284975b08302c  
glibc-common-2.12-1.107.el6_4.4.i686.rpm
67e0981289434ab468f9f511a253515ce39f0e9228d865217b4247e726a31c97  
glibc-devel-2.12-1.107.el6_4.4.i686.rpm
ed509429a40408c08b214f0599283969ba9632f3f3a4615d72d0418f48fa68ce  
glibc-headers-2.12-1.107.el6_4.4.i686.rpm
5246965ec796f129359c140b6737e8866d9f5e76aebd07eedc399775b7c0c6ec  
glibc-static-2.12-1.107.el6_4.4.i686.rpm
cd8226e5f96af1fb86c974ae42949f1ce091a357c5cc1930b2a645f60d598540  
glibc-utils-2.12-1.107.el6_4.4.i686.rpm
2b6977f39993900296c8e78ad9576096dc4b11bed8c56df2c09d711f97d70546  
nscd-2.12-1.107.el6_4.4.i686.rpm

x86_64:
4c14dd60cada88633694c3f1c605ad59f4d6c05fad3d13d4ecdb6ef1d94c3e3f  
glibc-2.12-1.107.el6_4.4.i686.rpm
dcabc218db99ed42b3436e6e6100ff105ff2c3c0801a0c7cd07d770ea28a9804  
glibc-2.12-1.107.el6_4.4.x86_64.rpm
83ed0593a6d128b678c229f36130074a4dc244c1f4a7c4f775a960a128bd145c  
glibc-common-2.12-1.107.el6_4.4.x86_64.rpm
67e0981289434ab468f9f511a253515ce39f0e9228d865217b4247e726a31c97  
glibc-devel-2.12-1.107.el6_4.4.i686.rpm
fe6912d08c2dcc08d0655070aae56d45dd7da4dafe0d81a87768ab4899c5f8b0  
glibc-devel-2.12-1.107.el6_4.4.x86_64.rpm
52808ebb0c15df074bfe5b71e350bd06402e8f22679dc259d77c8b3bf1ea82a4  
glibc-headers-2.12-1.107.el6_4.4.x86_64.rpm
5246965ec796f129359c140b6737e8866d9f5e76aebd07eedc399775b7c0c6ec  
glibc-static-2.12-1.107.el6_4.4.i686.rpm
5f55c7717bf87a13d418539f83c3bf53615ec1c9cf08544be545e948e6a03305  
glibc-static-2.12-1.107.el6_4.4.x86_64.rpm
e11c38cd17532fb476108e6f087f8c3fc08d47aa1d3b936d0e9651da4f01f039  
glibc-utils-2.12-1.107.el6_4.4.x86_64.rpm
12b17db87f3c9545618c636ecd3c2d2b276074caaa0cd2ec7ac7a1076e3d4578  
nscd-2.12-1.107.el6_4.4.x86_64.rpm

Source:
2bbf73b48dcbfc8372703f33eee7634f5a501c9194f45a4c75d0ceb32ae2cf5a  
glibc-2.12-1.107.el6_4.4.src.rpm



-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 2
Date: Wed, 28 Aug 2013 19:03:34 +
From: Karanbir Singh kbsi...@centos.org
Subject: [CentOS-announce] CESA-2013:1173 Important CentOS 6 kernel
Update
To: centos-annou...@centos.org
Message-ID: 20130828190333.ga40...@n04.lon1.karan.org
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Security Advisory 2013:1173 Important

Upstream details at : https://rhn.redhat.com/errata/RHSA-2013-1173.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( sha256sum Filename ) 

i386:
18b4ef3ba23b0fa5fef9a397feaeb2b9069face9568d08ee75b6babad9971a88  
kernel-2.6.32-358.18.1.el6.i686.rpm
12c037c93a1674ed08b3dd4004959d58843ceae1aad4fb1616360a4c33d7ccdf  
kernel-debug-2.6.32-358.18.1.el6.i686.rpm
ce4fa4f3e7b53f682e3404eadad7deeffb248201ea16cefed0bf927f9d42edaf  
kernel-debug-devel-2.6.32-358.18.1.el6.i686.rpm
d6d3583f90f2377e1548cfcf56e9e5c751acbe0d2bd2e51df50e53180e6de70f  
kernel-devel-2.6.32-358.18.1.el6.i686.rpm
95ef23c453a0c009e6564b1c5bd88d3b7ad2f98005b519e4f71ee05a33c45335  
kernel-doc-2.6.32-358.18.1.el6.noarch.rpm
ddc0e97e329986de690212395fd2fa1f9f84118153569eb322fb83bf7627d8e0  
kernel-firmware-2.6.32-358.18.1.el6.noarch.rpm
d82cfa64e9cdc4c75ea34a5fceb5ced6a839ea48e3457dddaad2536b8b5a734e  
kernel-headers-2.6.32-358.18.1.el6.i686.rpm
df4139359ffc9db1ba2d8c786cc28c8ac12442035c1ee39107ab77fba066ea33  
perf-2.6.32-358.18.1.el6.i686.rpm
61ab672fd48b8b502611e3bd9c3e1a5e9bf3819ad1f2d78213b40f71af48bfe8  

[CentOS] list installed packaged, without formatting overhead

2013-08-29 Thread Mihamina Rakotomandimby
Hi all,

In order to make the same installation on two servers where all was 
installed via yum/rpm, I want to dump a list of all installed packages 
on the first server.

My problem is if I just yum list installed, some weird formatting 
prints packages information on 2 lines...
I have to

   # yum list installed | awk '{print $1}' \
   | grep -v '@' | grep -vE '^[0-9]'

Is there a cleaner way?
   # rpm -aq
Is not OK because it includes version in a way it's more hard to parse 
just the package name.

Thank you.

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


Re: [CentOS] list installed packaged, without formatting overhead

2013-08-29 Thread Frank Cox
On Thu, 29 Aug 2013 19:39:36 +0300
Mihamina Rakotomandimby wrote:

 Is there a cleaner way?

rpm -qa --qf %{NAME}\n 
rpm -qa --qf %{NAME}.%{ARCH}\n 


-- 
MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Just Curious

2013-08-29 Thread Rajagopal Swaminathan
Greetings,

I wonder why the bugfixes gets implemented so fast that there are
frequent announcements in centos-announce list.

If only I could lay my (very) dirty hands on the sources of information...

With warm Regards,

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


[CentOS] ntpd heavy CPU consumption

2013-08-29 Thread Steve Thompson
CentOS 6.4, x86_64.

ntpd on one of my systems has started consuming 66% of one core, although 
it appears to be functioning correctly otherwise. No pertinent logs. Of 
course, nothing was changed :) I've seen this before many times, but 
usually the CPU consumption falls back to normal within a day or so, but 
this has been going on for several weeks now. Stopping and restarting ntpd 
makes no difference. Reinstalling ntpd makes no difference. The ntpd.conf 
file is the same as on 200+ other systems, all of which work normally. 
Anyone seen this before?

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


Re: [CentOS] ntpd heavy CPU consumption

2013-08-29 Thread SilverTip257
On Thu, Aug 29, 2013 at 5:32 PM, Steve Thompson s...@vgersoft.com wrote:

 CentOS 6.4, x86_64.

 ntpd on one of my systems has started consuming 66% of one core, although
 it appears to be functioning correctly otherwise. No pertinent logs. Of


Did you take a peek at the traffic going to this server?

Since you haven't specified, I figure this is just an ntp client and not an
ntp server.  Is that right?

Depending on your configuration (network ACLs, iptables on the host, and
ntpd.conf config on the host) maybe your server is being used in a denial
of service attack.


 course, nothing was changed :) I've seen this before many times, but
 usually the CPU consumption falls back to normal within a day or so, but
 this has been going on for several weeks now. Stopping and restarting ntpd
 makes no difference. Reinstalling ntpd makes no difference. The ntpd.conf
 file is the same as on 200+ other systems, all of which work normally.
 Anyone seen this before?


You might consider running strace on the ntp process when it decides to
ramp and consume CPU cycles.



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




-- 
---~~.~~---
Mike
//  SilverTip257  //
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Just Curious

2013-08-29 Thread Mike Burger
Rajagopal,

The fixed package sources come from the upstream distribution. When they
announce a fixed package, the CentOS maintainers pull it down and
recompile it for inclusion in CentOS.

-- 
Mike Burger
http://www.bubbanfriends.org

It's always suicide-mission this, save-the-planet that. No one ever just
stops by to say 'hi' anymore. --Colonel Jack O'Neill, SG1

On Sunday, September 8, I'll be participating in the Spokes of Hope ride,
to raise money for cancer awareness and make a difference in the lives of
cancer victims and their families/friends. If you'd care to donate, please
click:

http://ow.ly/nIdrC

Thank you.


 Greetings,

 I wonder why the bugfixes gets implemented so fast that there are
 frequent announcements in centos-announce list.

 If only I could lay my (very) dirty hands on the sources of information...

 With warm Regards,

 Rajagopal
 ___
 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] touchpad problem?

2013-08-29 Thread Ahmed
  Hi there,

  i recently installed centos 6 64bit version on my HPProBook4530s
Laptop. i then issued the command to update the kernel only. it updated 
the kernel to latest stable 2.6.32-358.14.1.el6.x86_64 kernel.
After update what i got is that my touchpad is not working. i am 1000% 
certain that new kernel caused this problem. so, what i should do with 
the kernel to overcome this problem or any other suggestion?

Warm Regards,
Ahmed Dawood
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos