[CentOS] mod_encoding

2011-03-10 Thread a arias
I'm trying to setup the Janrain implementation of OpenID in a dev box running CentOS 5.5. The detect.php script is telling me, "Your web server seems to corrupt queries. Received , expected a=%26b. Check for mod_encoding." Does anyone know what package provides this? Thanks __

Re: [CentOS] ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link

2010-05-11 Thread a arias
? Thanks, On Tue, May 11, 2010 at 8:12 PM, Dominik Zyla wrote: > On Tue, May 11, 2010 at 07:50:05PM -0400, a arias wrote: > > That did not work. It fact, i got the following message during the yum > > reinstall process: > > > > /sbin/ldconfig: /usr/lib64/libfreebl

Re: [CentOS] ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link

2010-05-11 Thread a arias
That did not work. It fact, i got the following message during the yum reinstall process: /sbin/ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link On Tue, May 11, 2010 at 7:39 PM, Dominik Zyla wrote: > On Tue, May 11, 2010 at 07:22:05PM -0400, a arias wrote: > > I have been ge

[CentOS] ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link

2010-05-11 Thread a arias
I have been getting the following error when trying to run ldconfig: ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link # ll /usr/lib64/libfreebl3.so -rwxr-xr-x 1 root root 312336 Mar 28 11:13 /usr/lib64/libfreebl3.so I've used "yum whatprovides /usr/lib64/libfreeb13.so" to determine t

Re: [CentOS] Virtualization - what do You recommend?

2010-02-03 Thread a arias
Over the last year I have worked with Xen, KVM, VMware ESX and Sun VirtualBox. VirtualBox is my recommendation, hands down. On Wed, Feb 3, 2010 at 12:52 PM, Pasi Kärkkäinen wrote: > On Wed, Feb 03, 2010 at 10:14:50AM +0800, Christopher Chan wrote: > > On Wednesday, February 03, 2010 12:43 AM, Jo

Re: [CentOS] help - batch account creation

2009-08-03 Thread a arias
Try this: while true do read username passwd if [ "$username" == "" ] then exit fi passwd_hash=$(openssl passwd $passwd) echo "Using the following password hash for user "$username": $passwd_hash" /usr/sbin/useradd $username -p "$passwd_hash";

Re: [CentOS] firewall question

2009-08-03 Thread a arias
This is because you have the following rules declared: -A RH-Firewall-1-INPUT -i eth0 -j ACCEPT -A RH-Firewall-1-INPUT -i eth1 -j ACCEPT You should not use these rules because iptables will mark this traffic as valid and will not even try to match any rule defined later in the table. If you want